Static variables

@:value(0)staticfinalinlineread onlyDECREMENT_SATURATE:Int = 0

Decrement the stencil buffer value, clamping at 0, the minimum value.

@:value(1)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.

@:value(2)staticfinalinlineread onlyINCREMENT_SATURATE:Int = 2

Increment the stencil buffer value, clamping at 255, the maximum value.

@:value(3)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.

@:value(4)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.

@:value(5)staticfinalinlineread onlyKEEP:Int = 5

Keep the current stencil buffer value.

@:value(6)staticfinalinlineread onlyREPLACE:Int = 6

Replace the stencil buffer value with the reference value.

@:value(7)staticfinalinlineread onlyZERO:Int = 7

Set the stencil buffer value to 0.

Static methods

@:fromstaticfromString(action:String):FoxStencilActionType

@:tostatictoString(action:FoxStencilActionType):String