vulkan-3.24.4: Bindings to the Vulkan graphics API.
Safe HaskellSafe-Inferred
LanguageHaskell2010

Vulkan.Extensions.VK_VALVE_descriptor_set_host_mapping

Description

Name

VK_VALVE_descriptor_set_host_mapping - device extension

VK_VALVE_descriptor_set_host_mapping

Name String
VK_VALVE_descriptor_set_host_mapping
Extension Type
Device extension
Registered Extension Number
421
Revision
1
Extension and Version Dependencies
  • Requires support for Vulkan 1.0
Special Use
Contact

Other Extension Metadata

Last Modified Date
2022-02-22
IP Status
No known IP claims.
Contributors
  • Hans-Kristian Arntzen, Valve

Description

This extension allows applications to directly query a host pointer for a DescriptorSet which can be used to copy descriptors between descriptor sets without the use of an API command. Memory offsets and sizes for descriptors can be queried from a DescriptorSetLayout as well.

Note

There is currently no specification language written for this extension. The links to APIs defined by the extension are to stubs that only include generated content such as API declarations and implicit valid usage statements.

Note

This extension is only intended for use in specific embedded environments with known implementation details, and is therefore undocumented.

New Commands

New Structures

New Enum Constants

Stub API References

There is currently no specification language written for this command. This section acts only as placeholder and to avoid dead links in the specification and reference pages.

// Provided by VK_VALVE_descriptor_set_host_mapping
void vkGetDescriptorSetLayoutHostMappingInfoVALVE(
    VkDevice                                    device,
    const VkDescriptorSetBindingReferenceVALVE* pBindingReference,
    VkDescriptorSetLayoutHostMappingInfoVALVE*  pHostMapping);

Valid Usage (Implicit)

  • device must be a valid Device handle

There is currently no specification language written for this command. This section acts only as placeholder and to avoid dead links in the specification and reference pages.

// Provided by VK_VALVE_descriptor_set_host_mapping
void vkGetDescriptorSetHostMappingVALVE(
    VkDevice                                    device,
    VkDescriptorSet                             descriptorSet,
    void**                                      ppData);

Valid Usage (Implicit)

  • device must be a valid Device handle
  • descriptorSet must be a valid DescriptorSet handle
  • ppData must be a valid pointer to a pointer value

There is currently no specification language written for this type. This section acts only as placeholder and to avoid dead links in the specification and reference pages.

// Provided by VK_VALVE_descriptor_set_host_mapping
typedef struct VkPhysicalDeviceDescriptorSetHostMappingFeaturesVALVE {
    VkStructureType    sType;
    void*              pNext;
    VkBool32           descriptorSetHostMapping;
} VkPhysicalDeviceDescriptorSetHostMappingFeaturesVALVE;

Valid Usage (Implicit)

There is currently no specification language written for this type. This section acts only as placeholder and to avoid dead links in the specification and reference pages.

// Provided by VK_VALVE_descriptor_set_host_mapping
typedef struct VkDescriptorSetBindingReferenceVALVE {
    VkStructureType          sType;
    const void*              pNext;
    VkDescriptorSetLayout    descriptorSetLayout;
    uint32_t                 binding;
} VkDescriptorSetBindingReferenceVALVE;

Valid Usage (Implicit)

There is currently no specification language written for this type. This section acts only as placeholder and to avoid dead links in the specification and reference pages.

// Provided by VK_VALVE_descriptor_set_host_mapping
typedef struct VkDescriptorSetLayoutHostMappingInfoVALVE {
    VkStructureType    sType;
    void*              pNext;
    size_t             descriptorOffset;
    uint32_t           descriptorSize;
} VkDescriptorSetLayoutHostMappingInfoVALVE;

Valid Usage (Implicit)

  • pNext must be NULL

Version History

  • Revision 1, 2022-02-22 (Hans-Kristian Arntzen)

    • Initial specification

See Also

DescriptorSetBindingReferenceVALVE, DescriptorSetLayoutHostMappingInfoVALVE, PhysicalDeviceDescriptorSetHostMappingFeaturesVALVE, getDescriptorSetHostMappingVALVE, getDescriptorSetLayoutHostMappingInfoVALVE

Document Notes

For more information, see the Vulkan Specification

This page is a generated document. Fixes and changes should be made to the generator scripts, not directly.

Synopsis

Documentation

getDescriptorSetLayoutHostMappingInfoVALVE Source #

Arguments

:: forall io. MonadIO io 
=> Device

device must be a valid Device handle

-> DescriptorSetBindingReferenceVALVE

pBindingReference must be a valid pointer to a valid DescriptorSetBindingReferenceVALVE structure

-> io DescriptorSetLayoutHostMappingInfoVALVE 

vkGetDescriptorSetLayoutHostMappingInfoVALVE - Stub description of vkGetDescriptorSetLayoutHostMappingInfoVALVE

Valid Usage (Implicit)

See Also

VK_VALVE_descriptor_set_host_mapping, DescriptorSetBindingReferenceVALVE, DescriptorSetLayoutHostMappingInfoVALVE, Device

getDescriptorSetHostMappingVALVE Source #

Arguments

:: forall io. MonadIO io 
=> Device

device must be a valid Device handle

-> DescriptorSet

descriptorSet must be a valid DescriptorSet handle

-> io ("data" ::: Ptr ()) 

vkGetDescriptorSetHostMappingVALVE - Stub description of vkGetDescriptorSetHostMappingVALVE

Valid Usage (Implicit)

See Also

VK_VALVE_descriptor_set_host_mapping, DescriptorSet, Device

data PhysicalDeviceDescriptorSetHostMappingFeaturesVALVE Source #

VkPhysicalDeviceDescriptorSetHostMappingFeaturesVALVE - Stub description of VkPhysicalDeviceDescriptorSetHostMappingFeaturesVALVE

Valid Usage (Implicit)

See Also

VK_VALVE_descriptor_set_host_mapping, Bool32, StructureType

Instances

Instances details
Storable PhysicalDeviceDescriptorSetHostMappingFeaturesVALVE Source # 
Instance details

Defined in Vulkan.Extensions.VK_VALVE_descriptor_set_host_mapping

Show PhysicalDeviceDescriptorSetHostMappingFeaturesVALVE Source # 
Instance details

Defined in Vulkan.Extensions.VK_VALVE_descriptor_set_host_mapping

Eq PhysicalDeviceDescriptorSetHostMappingFeaturesVALVE Source # 
Instance details

Defined in Vulkan.Extensions.VK_VALVE_descriptor_set_host_mapping

FromCStruct PhysicalDeviceDescriptorSetHostMappingFeaturesVALVE Source # 
Instance details

Defined in Vulkan.Extensions.VK_VALVE_descriptor_set_host_mapping

ToCStruct PhysicalDeviceDescriptorSetHostMappingFeaturesVALVE Source # 
Instance details

Defined in Vulkan.Extensions.VK_VALVE_descriptor_set_host_mapping

Zero PhysicalDeviceDescriptorSetHostMappingFeaturesVALVE Source # 
Instance details

Defined in Vulkan.Extensions.VK_VALVE_descriptor_set_host_mapping

data DescriptorSetBindingReferenceVALVE Source #

VkDescriptorSetBindingReferenceVALVE - Stub description of VkDescriptorSetBindingReferenceVALVE

Valid Usage (Implicit)

See Also

VK_VALVE_descriptor_set_host_mapping, DescriptorSetLayout, StructureType, getDescriptorSetLayoutHostMappingInfoVALVE

Constructors

DescriptorSetBindingReferenceVALVE 

Fields

Instances

Instances details
Storable DescriptorSetBindingReferenceVALVE Source # 
Instance details

Defined in Vulkan.Extensions.VK_VALVE_descriptor_set_host_mapping

Show DescriptorSetBindingReferenceVALVE Source # 
Instance details

Defined in Vulkan.Extensions.VK_VALVE_descriptor_set_host_mapping

Eq DescriptorSetBindingReferenceVALVE Source # 
Instance details

Defined in Vulkan.Extensions.VK_VALVE_descriptor_set_host_mapping

FromCStruct DescriptorSetBindingReferenceVALVE Source # 
Instance details

Defined in Vulkan.Extensions.VK_VALVE_descriptor_set_host_mapping

ToCStruct DescriptorSetBindingReferenceVALVE Source # 
Instance details

Defined in Vulkan.Extensions.VK_VALVE_descriptor_set_host_mapping

Zero DescriptorSetBindingReferenceVALVE Source # 
Instance details

Defined in Vulkan.Extensions.VK_VALVE_descriptor_set_host_mapping

data DescriptorSetLayoutHostMappingInfoVALVE Source #

VkDescriptorSetLayoutHostMappingInfoVALVE - Stub description of VkDescriptorSetLayoutHostMappingInfoVALVE

Valid Usage (Implicit)

See Also

VK_VALVE_descriptor_set_host_mapping, StructureType, getDescriptorSetLayoutHostMappingInfoVALVE

Instances

Instances details
Storable DescriptorSetLayoutHostMappingInfoVALVE Source # 
Instance details

Defined in Vulkan.Extensions.VK_VALVE_descriptor_set_host_mapping

Show DescriptorSetLayoutHostMappingInfoVALVE Source # 
Instance details

Defined in Vulkan.Extensions.VK_VALVE_descriptor_set_host_mapping

Eq DescriptorSetLayoutHostMappingInfoVALVE Source # 
Instance details

Defined in Vulkan.Extensions.VK_VALVE_descriptor_set_host_mapping

FromCStruct DescriptorSetLayoutHostMappingInfoVALVE Source # 
Instance details

Defined in Vulkan.Extensions.VK_VALVE_descriptor_set_host_mapping

ToCStruct DescriptorSetLayoutHostMappingInfoVALVE Source # 
Instance details

Defined in Vulkan.Extensions.VK_VALVE_descriptor_set_host_mapping

Zero DescriptorSetLayoutHostMappingInfoVALVE Source # 
Instance details

Defined in Vulkan.Extensions.VK_VALVE_descriptor_set_host_mapping

type VALVE_DESCRIPTOR_SET_HOST_MAPPING_EXTENSION_NAME = "VK_VALVE_descriptor_set_host_mapping" Source #