C Specification
Data describing a descriptor buffer binding is passed in a
VkDescriptorBufferBindingInfoEXT
structure:
// Provided by VK_EXT_descriptor_buffer
typedef struct VkDescriptorBufferBindingInfoEXT {
VkStructureType sType;
void* pNext;
VkDeviceAddress address;
VkBufferUsageFlags usage;
} VkDescriptorBufferBindingInfoEXT;
Members
-
sType
is a VkStructureType value identifying this structure. -
pNext
isNULL
or a pointer to a structure extending this structure. -
address
is a VkDeviceAddress specifying the device address defining the descriptor buffer to be bound. -
usage
is a bitmask of VkBufferUsageFlagBits specifying the VkBufferCreateInfo::usage
for the buffer from whichaddress
was queried.
Description
If a VkPipelineCreateFlags2CreateInfoKHR structure is present in the
pNext
chain, VkPipelineCreateFlags2CreateInfoKHR::flags
from that structure is used instead of flags
from this structure.
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.