Structures
VkExternalImageFormatProperties
Structure specifying supported external handle properties
The VkExternalImageFormatProperties structure is defined as:
typedef struct VkExternalImageFormatProperties {
VkStructureType sType;
void* pNext;
VkExternalMemoryProperties externalMemoryProperties;
} VkExternalImageFormatProperties;
pub struct ExternalImageFormatProperties {
s_type: vk::StructureType,
p_next: *mut c_void,
external_memory_properties: vk::ExternalMemoryProperties,
}
typedef VkExternalImageFormatProperties VkExternalImageFormatPropertiesKHR;
type ExternalImageFormatPropertiesKHR = vk::ExternalImageFormatProperties;
sTypeis a VkStructureType value identifying this structure.pNextisNULLor a pointer to a structure extending this structure.externalMemoryPropertiesis a VkExternalMemoryProperties structure specifying various capabilities of the external handle type when used with the specified image creation parameters.
Valid Usage (Implicit)
VUID-VkExternalImageFormatProperties-sType-sType
sType must be VK_STRUCTURE_TYPE_EXTERNAL_IMAGE_FORMAT_PROPERTIES