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