enum StencilOp;
| 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. |
Post-test process.
CONFIDENTIAL