Class VkAccelerationStructureCreateInfoNV

  • All Implemented Interfaces:
    java.lang.AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer

    public class VkAccelerationStructureCreateInfoNV
    extends org.lwjgl.system.Struct
    implements org.lwjgl.system.NativeResource
    Structure specifying the parameters of a newly created acceleration structure object.
    Valid Usage
    • If compactedSize is not 0 then both info.geometryCount and info.instanceCount must be 0
    Valid Usage (Implicit)
    See Also

    VkAccelerationStructureInfoNV, CreateAccelerationStructureNV

    Member documentation

    • sType – the type of this structure.
    • pNextNULL or a pointer to an extension-specific structure.
    • compactedSize – the size from the result of CmdWriteAccelerationStructuresPropertiesNV if this acceleration structure is going to be the target of a compacting copy.
    • info – the VkAccelerationStructureInfoNV structure that specifies further parameters of the created acceleration structure.

    Layout

    
     struct VkAccelerationStructureCreateInfoNV {
         VkStructureType sType;
         void const * pNext;
         VkDeviceSize compactedSize;
         VkAccelerationStructureInfoNV info;
     }