Structures
VkPipelineInfoKHR
Structure describing a pipeline
The VkPipelineInfoKHR
structure is defined as:
typedef struct VkPipelineInfoKHR {
VkStructureType sType;
const void* pNext;
VkPipeline pipeline;
} VkPipelineInfoKHR;
or the equivalent
typedef VkPipelineInfoKHR VkPipelineInfoEXT;
sType
is a VkStructureType value identifying this structure.pNext
isNULL
or a pointer to a structure extending this structure.pipeline
is aVkPipeline
handle.
Valid Usage (Implicit)
VUID-VkPipelineInfoKHR-sType-sType
sType
must be VK_STRUCTURE_TYPE_PIPELINE_INFO_KHR
VUID-VkPipelineInfoKHR-pNext-pNext
pNext
must be NULL
VUID-VkPipelineInfoKHR-pipeline-parameter
pipeline
must be a valid VkPipeline handle