C Specification
The VkDataGraphPipelineResourceInfoARM
structure is defined as:
// Provided by VK_ARM_data_graph
typedef struct VkDataGraphPipelineResourceInfoARM {
VkStructureType sType;
const void* pNext;
uint32_t descriptorSet;
uint32_t binding;
uint32_t arrayElement;
} VkDataGraphPipelineResourceInfoARM;
Members
-
sType
is a VkStructureType value identifying this structure. -
pNext
isNULL
or a pointer to a structure extending this structure. -
descriptorSet
is the descriptor set number of the resource being described. -
binding
is the binding number of the resource being described. -
arrayElement
is the element in the resource array ifdescriptorSet
andbinding
identifies an array of resources or0
otherwise.
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.