Structures
VkMemoryZirconHandlePropertiesFUCHSIA
Structure specifying Zircon handle compatible external memory
The VkMemoryZirconHandlePropertiesFUCHSIA structure is defined as:
typedef struct VkMemoryZirconHandlePropertiesFUCHSIA {
VkStructureType sType;
void* pNext;
uint32_t memoryTypeBits;
} VkMemoryZirconHandlePropertiesFUCHSIA;
pub struct MemoryZirconHandlePropertiesFUCHSIA {
s_type: vk::StructureType,
p_next: *mut c_void,
memory_type_bits: u32,
}
sTypeis a VkStructureType value identifying this structure.pNextisNULLor a pointer to a structure extending this structure.memoryTypeBitsa bitmask containing one bit set for every memory type which the specified handle can be imported as.
Valid Usage (Implicit)
VUID-VkMemoryZirconHandlePropertiesFUCHSIA-sType-sType
sType must be VK_STRUCTURE_TYPE_MEMORY_ZIRCON_HANDLE_PROPERTIES_FUCHSIA
VUID-VkMemoryZirconHandlePropertiesFUCHSIA-pNext-pNext
pNext must be NULL
Type
Structures