Structures
VkPhysicalDeviceDataGraphOperationSupportARM
Structure describing an operation or set of operations supported by a data graph processing engine
The VkPhysicalDeviceDataGraphOperationSupportARM structure is defined
as:
typedef struct VkPhysicalDeviceDataGraphOperationSupportARM {
VkPhysicalDeviceDataGraphOperationTypeARM operationType;
char name[VK_MAX_PHYSICAL_DEVICE_DATA_GRAPH_OPERATION_SET_NAME_SIZE_ARM];
uint32_t version;
} VkPhysicalDeviceDataGraphOperationSupportARM;
pub struct PhysicalDeviceDataGraphOperationSupportARM {
operation_type: vk::PhysicalDeviceDataGraphOperationTypeARM,
name: [c_char; VK_MAX_PHYSICAL_DEVICE_DATA_GRAPH_OPERATION_SET_NAME_SIZE_ARM],
version: u32,
}
sTypeis a VkStructureType value identifying this structure.pNextisNULLor a pointer to a structure extending this structure.operationTypeis a VkPhysicalDeviceDataGraphOperationTypeARM enum specifying the type of the operation whose support is being described.nameis a pointer to a null-terminated UTF-8 string specifying the name of the operation whose support is being described.versionis an integer specifying the version of the operation whose support is being described.
Parent
VK_ARM_data_graphType
Structures