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;
  • sType is the structure type of the structure being iterated through.
  • pNext is NULL or 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.