StencilAction Enumeration
The stencil test actions

Namespace: Aspose.ThreeD.Render
Assembly: Aspose.3D (in Aspose.3D.dll) Version: 20.3.0.0 (20.3)
Syntax
public enum StencilAction
Members
  Member nameValueDescription
Keep0 Keep the current value
Zero1 Sets the stencil buffer value to 0
Replace2 Sets the stencil buffer to ref where defined in StencilReference
Increment3 Increments the current stencil buffer value, clamps to maximum value.
IncrementWrap4 Increments the current stencil buffer value and wrap it to zero when it reaches maximum value.
Decrement5 Increments the current stencil buffer value, clamps to 0.
DecrementWrap6 Decrements the current stencil buffer value and wrap it to maximum value when it reaches zero.
Invert7 Bitwise inverts the current stencil buffer value.
See Also