VkBufferUsageFlags2CreateInfo(3)
C Specification
The VkBufferUsageFlags2CreateInfo structure is defined as:
// Provided by VK_VERSION_1_4
typedef struct VkBufferUsageFlags2CreateInfo {
VkStructureType sType;
const void* pNext;
VkBufferUsageFlags2 usage;
} VkBufferUsageFlags2CreateInfo;
// Provided by VK_KHR_extended_flags, VK_KHR_maintenance5
// Equivalent to VkBufferUsageFlags2CreateInfo
typedef VkBufferUsageFlags2CreateInfo VkBufferUsageFlags2CreateInfoKHR;
Members
-
sTypeis a VkStructureType value identifying this structure. -
pNextisNULLor a pointer to a structure extending this structure. -
usageis a bitmask of VkBufferUsageFlagBits2 specifying allowed usages of the buffer.
Description
If this structure is included in the pNext chain of a buffer creation
structure, usage is used instead of the corresponding usage
value passed in that creation structure, allowing additional usage flags to
be specified.
If this structure is included in the pNext chain of a query structure
including VkBufferUsageFlags, the usage flags of the buffer are
returned in flags of this structure, allowing additional usage flags
to be queried.
The flags representable in VkBufferUsageFlags are still returned in
the query structure in this case.
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.