Structures
VkBaseInStructure
Base structure for a read-only pointer chain
The VkBaseInStructure structure is defined as:
typedef struct VkBaseInStructure {
VkStructureType sType;
const struct VkBaseInStructure* pNext;
} VkBaseInStructure;
sTypeis the structure type of the structure being iterated through.pNextisNULLor a pointer to the next structure in a structure chain.
VkBaseInStructure can be used to facilitate iterating through a
read-only structure pointer chain.