Structures
VkPipelineRasterizationDepthClipStateCreateInfoEXT
Structure specifying depth clipping state
If the pNext chain of VkPipelineRasterizationStateCreateInfo
includes a VkPipelineRasterizationDepthClipStateCreateInfoEXT
structure, then that structure controls whether depth clipping is enabled or
disabled.
The VkPipelineRasterizationDepthClipStateCreateInfoEXT structure is
defined as:
typedef struct VkPipelineRasterizationDepthClipStateCreateInfoEXT {
VkStructureType sType;
const void* pNext;
VkPipelineRasterizationDepthClipStateCreateFlagsEXT flags;
VkBool32 depthClipEnable;
} VkPipelineRasterizationDepthClipStateCreateInfoEXT;
pub struct PipelineRasterizationDepthClipStateCreateInfoEXT {
s_type: vk::StructureType,
p_next: *const c_void,
flags: vk::PipelineRasterizationDepthClipStateCreateFlagsEXT, // Reserved
depth_clip_enable: vk::Bool32,
}
sTypeis a VkStructureType value identifying this structure.pNextisNULLor a pointer to a structure extending this structure.flagsis reserved for future use.depthClipEnablecontrols whether depth clipping is enabled as described in Primitive Clipping.
Valid Usage (Implicit)
VUID-VkPipelineRasterizationDepthClipStateCreateInfoEXT-sType-sType
sType must be VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_DEPTH_CLIP_STATE_CREATE_INFO_EXT