Structures

VkDataGraphPipelineSingleNodeConnectionARM

Structure describing a single connection between a data graph node and the pipeline layout of a graph pipeline

The VkDataGraphPipelineSingleNodeConnectionARM structure is defined as:

typedef struct VkDataGraphPipelineSingleNodeConnectionARM {
    VkStructureType sType;
    void* pNext;
    uint32_t set;
    uint32_t binding;
    VkDataGraphPipelineNodeConnectionTypeARM connection;
} VkDataGraphPipelineSingleNodeConnectionARM;
  • sType is a VkStructureType value identifying this structure.
  • pNext is NULL or a pointer to a structure extending this structure.
  • set is the descriptor set number of the graph pipeline layout resource to be connected to this connection point.
  • binding is the binding number of the graph pipeline layout resource to be connected to this connection point.
  • connection is a VkDataGraphPipelineNodeConnectionTypeARM specifying the connection point to link to a graph pipeline layout resource.

Valid Usage (Implicit)