C Specification
The VkPhysicalDeviceDataGraphOperationSupportARM structure is defined
as:
// Provided by VK_ARM_data_graph
typedef struct VkPhysicalDeviceDataGraphOperationSupportARM {
    VkPhysicalDeviceDataGraphOperationTypeARM    operationType;
    char                                         name[VK_MAX_PHYSICAL_DEVICE_DATA_GRAPH_OPERATION_SET_NAME_SIZE_ARM];
    uint32_t                                     version;
} VkPhysicalDeviceDataGraphOperationSupportARM;Members
- 
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.
Document Notes
For more information, see the Vulkan Specification
This page is extracted from the Vulkan Specification. Fixes and changes should be made to the Specification, not directly.