Structures
VkClusterAccelerationStructureClustersBottomLevelInputNV
Parameters describing bottom level acceleration structure
The VkClusterAccelerationStructureClustersBottomLevelInputNV structure is defined as:
typedef struct VkClusterAccelerationStructureClustersBottomLevelInputNV {
VkStructureType sType;
void* pNext;
uint32_t maxTotalClusterCount;
uint32_t maxClusterCountPerAccelerationStructure;
} VkClusterAccelerationStructureClustersBottomLevelInputNV;
pub struct ClusterAccelerationStructureClustersBottomLevelInputNV {
s_type: vk::StructureType,
p_next: *mut c_void,
max_total_cluster_count: u32,
max_cluster_count_per_acceleration_structure: u32,
}
sTypeis a VkStructureType value identifying this structure.pNextisNULLor a pointer to a structure extending this structure.maxTotalClusterCountis the total number of clusters acceleration structures that will be built or moved across all input arguments.maxClusterCountPerAccelerationStructureis the maximum number of clusters acceleration structures that will be built or moved per input argument.
Valid Usage (Implicit)
VUID-VkClusterAccelerationStructureClustersBottomLevelInputNV-sType-sType
sType must be VK_STRUCTURE_TYPE_CLUSTER_ACCELERATION_STRUCTURE_CLUSTERS_BOTTOM_LEVEL_INPUT_NV
Type
Structures