GraphicsStencilOperationEnums
¶
Renderer stencil operations.
| GraphicsStencilOperationKeep¶ | Keeps the current stencil buffer value. |
| GraphicsStencilOperationZero¶ | Sets stencil buffer value to zero. |
| GraphicsStencilOperationReplace¶ | Set stencil buffer value to reference value, specified by StencilFunction. |
| GraphicsStencilOperationIncrement¶ | Increases current stencil buffer value. |
| GraphicsStencilOperationIncrementWrap¶ | Increases stencil buffer value, wraps to zero when reaching maximum. |
| GraphicsStencilOperationDecrement¶ | Decreases current stencil buffer value. |
| GraphicsStencilOperationDecrementWrap¶ | Decreases stencil buffer value, wraps to maximum - 1 when below 0. |
| GraphicsStencilOperationInvert¶ | Inverts current stencil buffer value. |