C Specification
The VkAccelerationStructureBuildSizesInfoKHR
structure describes the
required build sizes for an acceleration structure and scratch buffers and
is defined as:
// Provided by VK_KHR_acceleration_structure
typedef struct VkAccelerationStructureBuildSizesInfoKHR {
VkStructureType sType;
const void* pNext;
VkDeviceSize accelerationStructureSize;
VkDeviceSize updateScratchSize;
VkDeviceSize buildScratchSize;
} VkAccelerationStructureBuildSizesInfoKHR;
Members
-
sType
is the type of this structure. -
pNext
isNULL
or a pointer to a structure extending this structure. -
accelerationStructureSize
is the size in bytes required in a VkAccelerationStructureKHR for a build or update operation. -
updateScratchSize
is the size in bytes required in a scratch buffer for an update operation. -
buildScratchSize
is the size in bytes required in a scratch buffer for a build operation.
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.