C Specification
The VkDataGraphPipelineSingleNodeCreateInfoARM structure is defined
as:
// Provided by VK_ARM_data_graph_optical_flow
typedef struct VkDataGraphPipelineSingleNodeCreateInfoARM {
VkStructureType sType;
void* pNext;
VkDataGraphPipelineNodeTypeARM nodeType;
uint32_t connectionCount;
const VkDataGraphPipelineSingleNodeConnectionARM* pConnections;
} VkDataGraphPipelineSingleNodeCreateInfoARM;
Members
-
sTypeis a VkStructureType value identifying this structure. -
pNextisNULLor a pointer to a structure extending this structure. -
nodeTypeis a VkDataGraphPipelineNodeTypeARM describing the type of this node. -
connectionCountis the length of thepConnectionsarray. -
pConnectionsis a pointer to an array ofconnectionCountVkDataGraphPipelineSingleNodeConnectionARM structures.
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.