Structures
VkQueueFamilyDataGraphPropertiesARM
Structure describing a data graph processing engine and operation it supports
The VkQueueFamilyDataGraphPropertiesARM structure is defined as:
typedef struct VkQueueFamilyDataGraphPropertiesARM {
VkStructureType sType;
void* pNext;
VkPhysicalDeviceDataGraphProcessingEngineARM engine;
VkPhysicalDeviceDataGraphOperationSupportARM operation;
} VkQueueFamilyDataGraphPropertiesARM;
pub struct QueueFamilyDataGraphPropertiesARM {
s_type: vk::StructureType,
p_next: *mut c_void,
engine: vk::PhysicalDeviceDataGraphProcessingEngineARM,
operation: vk::PhysicalDeviceDataGraphOperationSupportARM,
}
sTypeis a VkStructureType value identifying this structure.pNextisNULLor a pointer to a structure extending this structure.engineis a VkPhysicalDeviceDataGraphProcessingEngineARM structure describing a data graph processing engine.operationis a VkPhysicalDeviceDataGraphOperationSupportARM structure describing one or more operations supported by a data graph processing engine.
Valid Usage (Implicit)
VUID-VkQueueFamilyDataGraphPropertiesARM-sType-sType
sType must be VK_STRUCTURE_TYPE_QUEUE_FAMILY_DATA_GRAPH_PROPERTIES_ARM
VUID-VkQueueFamilyDataGraphPropertiesARM-pNext-pNext
pNext must be NULL
Parent
VK_ARM_data_graphType
Structures