Enum
VkAccelerationStructureTypeKHR
Type of acceleration structure
Values which can be set in
VkAccelerationStructureCreateInfoKHR::type
or
VkAccelerationStructureInfoNV::type
specifying the type of acceleration structure, are:
typedef enum VkAccelerationStructureTypeKHR {
VK_ACCELERATION_STRUCTURE_TYPE_TOP_LEVEL_KHR = 0,
VK_ACCELERATION_STRUCTURE_TYPE_BOTTOM_LEVEL_KHR = 1,
VK_ACCELERATION_STRUCTURE_TYPE_GENERIC_KHR = 2,
} VkAccelerationStructureTypeKHR;
or the equivalent
#define VkAccelerationStructureTypeNV VkAccelerationStructureTypeKHR
VK_ACCELERATION_STRUCTURE_TYPE_TOP_LEVEL_KHR
is a top-level acceleration structure containing instance data referring to bottom-level acceleration structures.VK_ACCELERATION_STRUCTURE_TYPE_BOTTOM_LEVEL_KHR
is a bottom-level acceleration structure containing the AABBs or geometry to be intersected.VK_ACCELERATION_STRUCTURE_TYPE_GENERIC_KHR
is an acceleration structure whose type is determined at build time used for special circumstances. In these cases, the acceleration structure type is not known at creation time, but must be specified at build time as either top or bottom.