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;
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