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;
  • 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.

VkBaseInStructure can be used to facilitate iterating through a read-only structure pointer chain.