C Specification
The VkDataGraphPipelineShaderModuleCreateInfoARM
structure is defined
as:
// Provided by VK_ARM_data_graph
typedef struct VkDataGraphPipelineShaderModuleCreateInfoARM {
VkStructureType sType;
const void* pNext;
VkShaderModule module;
const char* pName;
const VkSpecializationInfo* pSpecializationInfo;
uint32_t constantCount;
const VkDataGraphPipelineConstantARM* pConstants;
} VkDataGraphPipelineShaderModuleCreateInfoARM;
Members
-
sType
is a VkStructureType value identifying this structure. -
pNext
isNULL
or a pointer to a structure extending this structure. -
module
is optionally a VkShaderModule object containing the description of the graph. -
pName
is a pointer to a null-terminated UTF-8 string specifying the graph entry point name for this pipeline. -
pSpecializationInfo
is a pointer to a VkSpecializationInfo structure as described in Specialization Constants, orNULL
. -
constantCount
is the length of thepConstants
array. -
pConstants
is a pointer to an array of VkDataGraphPipelineConstantARM structures.
Description
If module
is not VK_NULL_HANDLE, the pipeline’s graph is defined
by module
.
If module
is VK_NULL_HANDLE, the pipeline’s graph is defined by
the chained VkShaderModuleCreateInfo.
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.