C Specification
The list of potential descriptor types a given mutable descriptor can
mutate to is passed in a VkMutableDescriptorTypeListVALVE structure.
The VkMutableDescriptorTypeListVALVE structure is defined as:
// Provided by VK_VALVE_mutable_descriptor_type
typedef struct VkMutableDescriptorTypeListVALVE {
uint32_t descriptorTypeCount;
const VkDescriptorType* pDescriptorTypes;
} VkMutableDescriptorTypeListVALVE;
Members
-
descriptorTypeCountis the number of elements inpDescriptorTypes. -
pDescriptorTypesisNULLor a pointer to an array ofdescriptorTypeCountVkDescriptorType values defining which descriptor types a given binding may mutate to.
Document Notes
For more information, see the Vulkan Specification
This page is extracted from the Vulkan Specification. Fixes and changes should be made to the Specification, not directly.