VkBindHeapInfoEXT(3)
Name
VkBindHeapInfoEXT - Structure describing a device address range and implementation reservation for a descriptor heap
C Specification
VkBindHeapInfoEXT is defined as:
// Provided by VK_EXT_descriptor_heap
typedef struct VkBindHeapInfoEXT {
VkStructureType sType;
const void* pNext;
VkDeviceAddressRangeEXT heapRange;
VkDeviceSize reservedRangeOffset;
VkDeviceSize reservedRangeSize;
} VkBindHeapInfoEXT;
Members
-
sTypeis a VkStructureType value identifying this structure. -
pNextisNULLor a pointer to a structure extending this structure. -
heapRangeis a VkDeviceAddressRangeEXT defining the device address range used for the heap, inclusive of the implementation reserved range. -
reservedRangeOffsetis the offset withinheapRangeto the start of the reserved range for the implementation. -
reservedRangeSizeis the size of the reserved range for the implementation withinheapRange.
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.