C Specification
A strided device address range is defined by the structure:
// Provided by VK_KHR_copy_memory_indirect
typedef struct VkStridedDeviceAddressRangeKHR {
VkDeviceAddress address;
VkDeviceSize size;
VkDeviceSize stride;
} VkStridedDeviceAddressRangeKHR;
Members
-
addressis a VkDeviceAddress specifying the start of the range. -
sizeis a VkDeviceSize specifying the size of the range. -
strideis a VkDeviceSize specifying the stride of elements over 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.