nw::gfx::res::ResStencilOperation::StencilOp Enumerated Type

Syntax

enum StencilOp;

Value

Value Description
STENCILOP_KEEP Stores the current value.
STENCILOP_ZERO Replaces with 0.
STENCILOP_REPLACE Replaces with the reference value.
STENCILOP_INCREASE Increases the value. The extreme boundary is clamped.
STENCILOP_DECREASE Decreases the value. The extreme boundary is clamped.
STENCILOP_INVERT Inverts bits.
STENCILOP_INCREASE_WRAP Increases the value. Wraps at the extreme boundary.
STENCILOP_DECREASE_WRAP Decreases the value. Wraps at the extreme boundary.

Description

Post-test process.


CONFIDENTIAL