C Specification
The VkPushDataInfoEXT structure is defined as:
// Provided by VK_EXT_descriptor_heap
typedef struct VkPushDataInfoEXT {
VkStructureType sType;
const void* pNext;
uint32_t offset;
VkHostAddressRangeConstEXT data;
} VkPushDataInfoEXT;
Members
-
sTypeis a VkStructureType value identifying this structure. -
pNextisNULLor a pointer to a structure extending this structure. -
offsetis the start offset of the push data range to update, in units of bytes. -
datais the host address range containing the push data to update.
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.