Structures

VkAccelerationStructureBuildSizesInfoKHR

Structure specifying build sizes for an acceleration structure

The VkAccelerationStructureBuildSizesInfoKHR structure describes the required build sizes for an acceleration structure and scratch buffers and is defined as:

typedef struct VkAccelerationStructureBuildSizesInfoKHR {
    VkStructureType sType;
    const void* pNext;
    VkDeviceSize accelerationStructureSize;
    VkDeviceSize updateScratchSize;
    VkDeviceSize buildScratchSize;
} VkAccelerationStructureBuildSizesInfoKHR;
  • sType is a VkStructureType value identifying this structure.
  • pNext is NULL 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.

Valid Usage (Implicit)

VUID-VkAccelerationStructureBuildSizesInfoKHR-sType-sType

sType must be VK_STRUCTURE_TYPE_ACCELERATION_STRUCTURE_BUILD_SIZES_INFO_KHR