Click or drag to resize

glStencilOp Enumeration

Stencil operations as used by glStencilOp.

Namespace:  Ooogles
Assembly:  Ooogles (in Ooogles.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public enum StencilOp
Members
  Member nameValueDescription
Keep7680 Keeps the current value.
Zero0 Sets the stencil buffer value to 0.
Replace7681 Sets the stencil buffer value to ARef, as specified by StencilFunc(glCompareFunc, Int32, UInt32).
Increment7682 Increments the current stencil buffer value. Clamps to the maximum representable unsigned value.
IncrementAndWrap34055 Increments the current stencil buffer value. Wraps stencil buffer value to zero when incrementing the maximum representable unsigned value.
Decrement7683 Decrements the current stencil buffer value. Clamps to 0.
DecrementAndWrap34056 Decrements the current stencil buffer value. Wraps stencil buffer value to the maximum representable unsigned value when decrementing a stencil buffer value of zero.
Invert5386 Bitwise inverts the current stencil buffer value.
See Also