StencilOperation

StencilOperation()

Determines the action taken based on the result of the stencil test.

Members

staticconstantCesium.StencilOperation.DECREMENT : Number

Decrements the stencil buffer value, clamping to zero.

staticconstantCesium.StencilOperation.DECREMENT_WRAP : Number

Decrements the stencil buffer value, wrapping to the maximum unsigned byte instead of going below zero.

staticconstantCesium.StencilOperation.INCREMENT : Number

Increments the stencil buffer value, clamping to unsigned byte.

staticconstantCesium.StencilOperation.INCREMENT_WRAP : Number

Increments the stencil buffer value, wrapping to zero when exceeding the unsigned byte range.

staticconstantCesium.StencilOperation.INVERT : Number

Bitwise inverts the existing stencil buffer value.

staticconstantCesium.StencilOperation.KEEP : Number

Does not change the stencil buffer.

staticconstantCesium.StencilOperation.REPLACE : Number

Replaces the stencil buffer value with the reference value.

staticconstantCesium.StencilOperation.ZERO : Number

Sets the stencil buffer value to zero.