Structures

VkAccelerationStructureDeviceAddressInfoKHR

Structure specifying the acceleration structure to query an address for

The VkAccelerationStructureDeviceAddressInfoKHR structure is defined as:

typedef struct VkAccelerationStructureDeviceAddressInfoKHR {
    VkStructureType sType;
    const void* pNext;
    VkAccelerationStructureKHR accelerationStructure;
} VkAccelerationStructureDeviceAddressInfoKHR;
  • sType is a VkStructureType value identifying this structure.
  • pNext is NULL or a pointer to a structure extending this structure.
  • accelerationStructure specifies the acceleration structure whose address is being queried.

Valid Usage (Implicit)