Structures
VkPipelineCreateFlags2CreateInfo
Extended pipeline create flags
The VkPipelineCreateFlags2CreateInfo structure is defined as:
typedef struct VkPipelineCreateFlags2CreateInfo {
VkStructureType sType;
const void* pNext;
VkPipelineCreateFlags2 flags;
} VkPipelineCreateFlags2CreateInfo;
pub struct PipelineCreateFlags2CreateInfo {
s_type: vk::StructureType,
p_next: *const c_void,
flags: vk::PipelineCreateFlags2,
}
typedef VkPipelineCreateFlags2CreateInfo VkPipelineCreateFlags2CreateInfoKHR;
type PipelineCreateFlags2CreateInfoKHR = vk::PipelineCreateFlags2CreateInfo;
sTypeis a VkStructureType value identifying this structure.pNextisNULLor a pointer to a structure extending this structure.flagsis a bitmask of VkPipelineCreateFlagBits2 specifying how a pipeline will be generated.
If this structure is included in the pNext chain of a pipeline
creation structure, flags is used instead of the corresponding
flags value passed in that creation structure, allowing additional
creation flags to be specified.
Valid Usage (Implicit)
VUID-VkPipelineCreateFlags2CreateInfo-sType-sType
sType must be VK_STRUCTURE_TYPE_PIPELINE_CREATE_FLAGS_2_CREATE_INFO
VUID-VkPipelineCreateFlags2CreateInfo-flags-parameter
flags must be a valid combination of VkPipelineCreateFlagBits2 values