C Specification
The VkGeometryAABBNV
structure is defined as:
typedef struct VkGeometryAABBNV {
VkStructureType sType;
const void* pNext;
VkBuffer aabbData;
uint32_t numAABBs;
uint32_t stride;
VkDeviceSize offset;
} VkGeometryAABBNV;
Members
-
sType
is the type of this structure. -
pNext
isNULL
or a pointer to an extension-specific structure. -
aabbData
is the buffer containing axis-aligned bounding box data. -
numAABBs
is the number of AABBs in this geometry. -
stride
is the stride in bytes between AABBs inaabbData
. -
offset
is the offset in bytes of the first AABB inaabbData
.
Description
The AABB data in memory is six 32-bit floats consisting of the minimum x, y, and z values followed by the maximum x, y, and z values.
See Also
VkBuffer, VkDeviceSize
, VkGeometryDataNV, VkStructureType
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.
Copyright
Copyright (c) 2014-2019 Khronos Group. This work is licensed under a Creative Commons Attribution 4.0 International License.