C Specification
The VkClusterAccelerationStructureBuildClustersBottomLevelInfoNV structure is defined as:
// Provided by VK_NV_cluster_acceleration_structure
typedef struct VkClusterAccelerationStructureBuildClustersBottomLevelInfoNV {
uint32_t clusterReferencesCount;
uint32_t clusterReferencesStride;
VkDeviceAddress clusterReferences;
} VkClusterAccelerationStructureBuildClustersBottomLevelInfoNV;
Members
-
clusterReferencesCount
is the number of clusters this bottom level acceleration structure will be built from. -
clusterReferencesStride
is the stride inclusterReferences
. -
clusterReferences
is the device memory containing the address of the clusters.
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.