 | glStencilOp Enumeration |
Stencil operations as used by glStencilOp.
Namespace:
Ooogles
Assembly:
Ooogles (in Ooogles.dll) Version: 1.0.0.0 (1.0.0.0)
SyntaxPublic Enumeration StencilOp
public enum class StencilOp
Members
| Member name | Value | Description |
---|
| Keep | 7680 |
Keeps the current value.
|
| Zero | 0 |
Sets the stencil buffer value to 0.
|
| Replace | 7681 |
Sets the stencil buffer value to ARef, as specified by StencilFunc(glCompareFunc, Int32, UInt32).
|
| Increment | 7682 |
Increments the current stencil buffer value.
Clamps to the maximum representable unsigned value.
|
| IncrementAndWrap | 34055 |
Increments the current stencil buffer value.
Wraps stencil buffer value to zero when incrementing the maximum representable unsigned value.
|
| Decrement | 7683 |
Decrements the current stencil buffer value.
Clamps to 0.
|
| DecrementAndWrap | 34056 |
Decrements the current stencil buffer value.
Wraps stencil buffer value to the maximum representable unsigned value when decrementing a stencil buffer value of zero.
|
| Invert | 5386 |
Bitwise inverts the current stencil buffer value.
|
See Also