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
-
sTypeis a VkStructureType value identifying this structure. -
pNextisNULLor a pointer to a structure extending this structure. -
moduleis optionally a VkShaderModule object containing the description of the graph. -
pNameis a pointer to a null-terminated UTF-8 string specifying the graph entry point name for this pipeline. -
pSpecializationInfois a pointer to a VkSpecializationInfo structure as described in Specialization Constants, orNULL. -
constantCountis the length of thepConstantsarray. -
pConstantsis 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.