C Specification
The VkAabbPositionsKHR structure is defined as:
// Provided by VK_KHR_acceleration_structure
typedef struct VkAabbPositionsKHR {
    float    minX;
    float    minY;
    float    minZ;
    float    maxX;
    float    maxY;
    float    maxZ;
} VkAabbPositionsKHR;or the equivalent
// Provided by VK_NV_ray_tracing
typedef VkAabbPositionsKHR VkAabbPositionsNV;Members
- 
minXis the x position of one opposing corner of a bounding box.
- 
minYis the y position of one opposing corner of a bounding box.
- 
minZis the z position of one opposing corner of a bounding box.
- 
maxXis the x position of the other opposing corner of a bounding box.
- 
maxYis the y position of the other opposing corner of a bounding box.
- 
maxZis the z position of the other opposing corner of a bounding box.
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.