StencilOp
Specifies the operation that's performed on the stencil buffer when rendering.
Read time 1 minuteLast updated 4 days ago
Definition
- Type: Enum
- Namespace: UnityEngine.Rendering
- Assembly: UnityEngine.CoreModule
public enum StencilOp
Fields
Value | Description |
|---|---|
| DecrementSaturate | Decrements the current stencil buffer value. Clamps to 0. |
| DecrementWrap | Decrements the current stencil buffer value. Wraps stencil buffer value to the maximum representable unsigned value when decrementing a stencil buffer value of zero. |
| IncrementSaturate | Increments the current stencil buffer value. Clamps to the maximum representable unsigned value. |
| IncrementWrap | Increments the current stencil buffer value. Wraps stencil buffer value to zero when incrementing the maximum representable unsigned value. |
| Invert | Bitwise inverts the current stencil buffer value. |
| Keep | Keeps the current stencil value. |
| Replace | Replace the stencil buffer value with reference value (specified in the shader). |
| Zero | Sets the stencil buffer value to zero. |