Kanzi  3.9.8
Kanzi Engine Java API
GraphicsStencilOperation Enum Reference

Renderer stencil operations. More...

Inheritance diagram for GraphicsStencilOperation:
[legend]

Public Member Functions

 GraphicsStencilOperation (int mValue)
 
 GraphicsStencilOperation (GraphicsStencilOperation enum_)
 
int getValue ()
 Returns the integer value of the enumeration constant. More...
 
final int swigValue ()
 

Static Public Member Functions

static GraphicsStencilOperation swigToEnum (int swigValue)
 
static GraphicsStencilOperation toEnum (int value)
 Converts an integer value to the matching enumeration constant. More...
 

Public Attributes

 GraphicsStencilOperationDecrement =(5)
 Decreases current stencil buffer value.
 
 GraphicsStencilOperationDecrementWrap =(6)
 Decreases stencil buffer value, wraps to maximum - 1 when below 0.
 
 GraphicsStencilOperationIncrement =(3)
 Increases current stencil buffer value.
 
 GraphicsStencilOperationIncrementWrap =(4)
 Increases stencil buffer value, wraps to zero when reaching maximum.
 
 GraphicsStencilOperationInvert =(7)
 Inverts current stencil buffer value.
 
 GraphicsStencilOperationKeep =(0)
 Keeps the current stencil buffer value.
 
 GraphicsStencilOperationReplace =(2)
 Set stencil buffer value to reference value, specified by StencilFunction.
 
 GraphicsStencilOperationZero =(1)
 Sets stencil buffer value to zero.
 

Detailed Description

Renderer stencil operations.

Member Function Documentation

int getValue ( )

Returns the integer value of the enumeration constant.

Returns
Integer value.

Implements Enum.

static GraphicsStencilOperation toEnum ( int  value)
static

Converts an integer value to the matching enumeration constant.

Parameters
valueInteger value to convert to enumeration constant.
Returns
Enumeration constant matching the integer value.