C Specification
A device address range indicates a sized range of device memory.
// Provided by VK_EXT_descriptor_heap
typedef struct VkDeviceAddressRangeEXT {
VkDeviceAddress address;
VkDeviceSize size;
} VkDeviceAddressRangeEXT;
Members
-
addressis a VkDeviceAddress specifying the start of the range. -
sizeis a VkDeviceSize specifying the size of the range.
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.