Static variables
staticfinalinlineread onlyDECREMENT_SATURATE:Int = 0
Decrement the stencil buffer value, clamping at 0, the minimum value.
staticfinalinlineread onlyDECREMENT_WRAP:Int = 1
Decrement the stencil buffer value. If the result is less than 0, the minimum value, then the buffer value is "wrapped around" to 255.
staticfinalinlineread onlyINCREMENT_SATURATE:Int = 2
Increment the stencil buffer value, clamping at 255, the maximum value.
staticfinalinlineread onlyINCREMENT_WRAP:Int = 3
Increment the stencil buffer value. If the result exceeds 255, the maximum value, then the buffer value is "wrapped around" to 0.
staticfinalinlineread onlyINVERT:Int = 4
Invert the stencil buffer value, bitwise.
For example, if the 8-bit binary number in the stencil buffer is: 11110000, then the value is changed to: 00001111.