D3D12DDI_DEPTH_STENCILOP_DESC - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// d3d12umddi.h

typedef struct D3D12DDI_DEPTH_STENCILOP_DESC {
  D3D12DDI_STENCIL_OP      StencilFailOp;
  D3D12DDI_STENCIL_OP      StencilDepthFailOp;
  D3D12DDI_STENCIL_OP      StencilPassOp;
  D3D12DDI_COMPARISON_FUNC StencilFunc;
} D3D12DDI_DEPTH_STENCILOP_DESC;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-d3d12umddi-d3d12ddi_depth_stencilop_desc)

D3D12DDI_DEPTH_STENCILOP_DESC structure

Description

The D3D12DDI_DEPTH_STENCILOP_DESC structure describes stencil operations that can be performed based on the results of stencil test.

Members

StencilFailOp

A D3D12DDI_STENCIL_OP-typed value that indicates the operation to perform if the stencil test fails.

StencilDepthFailOp

A D3D12DDI_STENCIL_OP-typed value that indicates the operation to perform if the stencil test passes and the depth test fails.

StencilPassOp

A D3D12DDI_STENCIL_OP-typed value that indicates the operation to perform if both stencil and depth tests pass.

StencilFunc

A D3D12DDI_COMPARISON_FUNC-typed value that indicates the stencil-comparison function to perform.

Remarks

See also