C Specification
The VkPipelineDepthStencilStateCreateInfo structure is defined as:
// Provided by VK_VERSION_1_0
typedef struct VkPipelineDepthStencilStateCreateInfo {
    VkStructureType                           sType;
    const void*                               pNext;
    VkPipelineDepthStencilStateCreateFlags    flags;
    VkBool32                                  depthTestEnable;
    VkBool32                                  depthWriteEnable;
    VkCompareOp                               depthCompareOp;
    VkBool32                                  depthBoundsTestEnable;
    VkBool32                                  stencilTestEnable;
    VkStencilOpState                          front;
    VkStencilOpState                          back;
    float                                     minDepthBounds;
    float                                     maxDepthBounds;
} VkPipelineDepthStencilStateCreateInfo;Members
- 
sTypeis a VkStructureType value identifying this structure.
- 
pNextisNULLor a pointer to a structure extending this structure.
- 
flagsis a bitmask of VkPipelineDepthStencilStateCreateFlagBits specifying additional depth/stencil state information.
- 
depthTestEnablecontrols whether depth testing is enabled.
- 
depthWriteEnablecontrols whether depth writes are enabled whendepthTestEnableisVK_TRUE. Depth writes are always disabled whendepthTestEnableisVK_FALSE.
- 
depthCompareOpis a VkCompareOp value specifying the comparison operator to use in the Depth Comparison step of the depth test.
- 
depthBoundsTestEnablecontrols whether depth bounds testing is enabled.
- 
stencilTestEnablecontrols whether stencil testing is enabled.
- 
frontandbackare VkStencilOpState values controlling the corresponding parameters of the stencil test.
- 
minDepthBoundsis the minimum depth bound used in the depth bounds test.
- 
maxDepthBoundsis the maximum depth bound used in the depth bounds test.
Document Notes
For more information, see the Vulkan Specification
This page is extracted from the Vulkan Specification. Fixes and changes should be made to the Specification, not directly.