D3D10_DDI_DEPTH_STENCILOP_DESC - NtDoc

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

typedef struct D3D10_DDI_DEPTH_STENCILOP_DESC {
  [in] D3D10_DDI_STENCIL_OP      StencilFailOp;
  [in] D3D10_DDI_STENCIL_OP      StencilDepthFailOp;
  [in] D3D10_DDI_STENCIL_OP      StencilPassOp;
  [in] D3D10_DDI_COMPARISON_FUNC StencilFunc;
} D3D10_DDI_DEPTH_STENCILOP_DESC;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-d3d10umddi-d3d10_ddi_depth_stencilop_desc)

D3D10_DDI_DEPTH_STENCILOP_DESC structure

Description

The D3D10_DDI_DEPTH_STENCILOP_DESC structure describes a depth stencil operation.

Members

StencilFailOp [in]

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

StencilDepthFailOp [in]

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

StencilPassOp [in]

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

StencilFunc [in]

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

See also

CalcPrivateDepthStencilStateSize

CreateDepthStencilState

D3D10_DDI_COMPARISON_FUNC

D3D10_DDI_STENCIL_OP