Enum StencilOp
- Namespace
- Pie
- Assembly
- Pie.dll
Various operations that can occur during stencil testing.
public enum StencilOp
Fields
Decrement = 5Decrement the stencil value by 1, and clamp the result.
DecrementWrap = 6Decrement the stencil value by 1, and wrap the result if necessary.
Increment = 3Increment the stencil value by 1, and clamp the result.
IncrementWrap = 4Increment the stencil value by 1, and wrap the result if necessary.
Invert = 7Invert the stencil data.
Keep = 0Keep the existing stencil data.
Replace = 2Replace the existing stencil data to the reference value.
Zero = 1Set the stencil data to 0.