C Specification
The VkStridedDeviceAddressRegionKHR structure is defined as:
// Provided by VK_KHR_ray_tracing_pipeline
typedef struct VkStridedDeviceAddressRegionKHR {
VkDeviceAddress deviceAddress;
VkDeviceSize stride;
VkDeviceSize size;
} VkStridedDeviceAddressRegionKHR;
Members
-
deviceAddressis the device address (as returned by the vkGetBufferDeviceAddress command) at which the region starts, or zero if the region is unused. -
strideis the byte stride between consecutive elements. -
sizeis the size in bytes of the region starting atdeviceAddress.
See Also
VK_KHR_ray_tracing_pipeline, VkDeviceAddress, VkDeviceSize, vkCmdTraceRaysIndirectKHR, vkCmdTraceRaysKHR
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.