Structures
VkQueueFamilyDataGraphTOSAPropertiesARM
Structure describing the TOSA properties of a processing engine and operation set for a specific queue family of a physical device
The VkQueueFamilyDataGraphTOSAPropertiesARM structure is defined as:
typedef struct VkQueueFamilyDataGraphTOSAPropertiesARM {
VkStructureType sType;
void* pNext;
uint32_t profileCount;
const VkDataGraphTOSANameQualityARM* pProfiles;
uint32_t extensionCount;
const VkDataGraphTOSANameQualityARM* pExtensions;
VkDataGraphTOSALevelARM level;
} VkQueueFamilyDataGraphTOSAPropertiesARM;
pub struct QueueFamilyDataGraphTOSAPropertiesARM {
s_type: vk::StructureType,
p_next: *mut c_void,
profile_count: u32,
p_profiles: *const vk::DataGraphTOSANameQualityARM,
extension_count: u32,
p_extensions: *const vk::DataGraphTOSANameQualityARM,
level: vk::DataGraphTOSALevelARM,
}
sTypeis a VkStructureType value identifying this structure.pNextisNULLor a pointer to a structure extending this structure.profileCountis the length of thepProfilesarray.pProfilesis a pointer to an array of VkDataGraphTOSANameQualityARM structures describing the TOSA profiles supported.extensionCountis the length of thepExtensionsarray.pExtensionsis a pointer to an array of VkDataGraphTOSANameQualityARM structures describing the TOSA extensions supported.levelis a VkDataGraphTOSALevelARM describing the TOSA level supported.
Valid Usage (Implicit)
VUID-VkQueueFamilyDataGraphTOSAPropertiesARM-sType-sType
sType must be VK_STRUCTURE_TYPE_QUEUE_FAMILY_DATA_GRAPH_TOSA_PROPERTIES_ARM
VUID-VkQueueFamilyDataGraphTOSAPropertiesARM-pNext-pNext
pNext must be NULL
Type
Structures