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;
pub struct DataGraphPipelineSingleNodeConnectionARM {
s_type: vk::StructureType,
p_next: *mut c_void,
set: u32,
binding: u32,
connection: vk::DataGraphPipelineNodeConnectionTypeARM,
}
sTypeis a VkStructureType value identifying this structure.pNextisNULLor a pointer to a structure extending this structure.setis the descriptor set number of the graph pipeline layout resource to be connected to this connection point.bindingis the binding number of the graph pipeline layout resource to be connected to this connection point.connectionis a VkDataGraphPipelineNodeConnectionTypeARM specifying the connection point to link to a graph pipeline layout resource.
Valid Usage (Implicit)
VUID-VkDataGraphPipelineSingleNodeConnectionARM-sType-sType
sType must be VK_STRUCTURE_TYPE_DATA_GRAPH_PIPELINE_SINGLE_NODE_CONNECTION_ARM
VUID-VkDataGraphPipelineSingleNodeConnectionARM-pNext-pNext
pNext must be NULL
VUID-VkDataGraphPipelineSingleNodeConnectionARM-connection-parameter
connection must be a valid VkDataGraphPipelineNodeConnectionTypeARM value
Type
Structures