Structures
VkMicromapVersionInfoEXT
Micromap version information
The VkMicromapVersionInfoEXT structure is defined as:
typedef struct VkMicromapVersionInfoEXT {
VkStructureType sType;
const void* pNext;
const uint8_t* pVersionData;
} VkMicromapVersionInfoEXT;
sTypeis a VkStructureType value identifying this structure.pNextisNULLor a pointer to a structure extending this structure.pVersionDatais a pointer to the version header of a micromap as defined in vkCmdCopyMicromapToMemoryEXT
pVersionData is a pointer to an array of 2×VK_UUID_SIZE
uint8_t values instead of two VK_UUID_SIZE arrays as the expected
use case for this member is to be pointed at the header of a previously
serialized micromap (via vkCmdCopyMicromapToMemoryEXT or
vkCopyMicromapToMemoryEXT) that is loaded in memory.
Using arrays would necessitate extra memory copies of the UUIDs.
Valid Usage (Implicit)
VUID-VkMicromapVersionInfoEXT-sType-sType
sType must be VK_STRUCTURE_TYPE_MICROMAP_VERSION_INFO_EXT
VUID-VkMicromapVersionInfoEXT-pNext-pNext
pNext must be NULL
VUID-VkMicromapVersionInfoEXT-pVersionData-parameter
pVersionData must be a valid pointer to an array of uint8_t values