Structures
VkExternalTensorPropertiesARM
Structure specifying supported external handle capabilities for a tensor
The VkExternalTensorPropertiesARM structure is defined as:
typedef struct VkExternalTensorPropertiesARM {
VkStructureType sType;
const void* pNext;
VkExternalMemoryProperties externalMemoryProperties;
} VkExternalTensorPropertiesARM;
pub struct ExternalTensorPropertiesARM {
s_type: vk::StructureType,
p_next: *const c_void,
external_memory_properties: vk::ExternalMemoryProperties,
}
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 tensor creation parameters.
Valid Usage (Implicit)
VUID-VkExternalTensorPropertiesARM-sType-sType
sType must be VK_STRUCTURE_TYPE_EXTERNAL_TENSOR_PROPERTIES_ARM
VUID-VkExternalTensorPropertiesARM-pNext-pNext
pNext must be NULL
VUID-VkExternalTensorPropertiesARM-externalMemoryProperties-parameter
externalMemoryProperties must be a valid VkExternalMemoryProperties structure
Parent
VK_ARM_tensorsType
Structures