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;
pub struct BaseInStructure {
s_type: vk::StructureType,
p_next: *const vk::BaseInStructure,
}
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.
Parent
VK_VERSION_1_0Type
Structures