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