Structures
VkPipelineInfoKHR
Structure describing a pipeline
The VkPipelineInfoKHR structure is defined as:
typedef struct VkPipelineInfoKHR {
VkStructureType sType;
const void* pNext;
VkPipeline pipeline;
} VkPipelineInfoKHR;
pub struct PipelineInfoKHR {
s_type: vk::StructureType,
p_next: *const c_void,
pipeline: vk::Pipeline,
}
typedef VkPipelineInfoKHR VkPipelineInfoEXT;
type PipelineInfoEXT = vk::PipelineInfoKHR;
sTypeis a VkStructureType value identifying this structure.pNextisNULLor a pointer to a structure extending this structure.pipelineis aVkPipelinehandle.
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
Type
Structures