Enum StencilFunctionType

Definition

Namespace:
Tizen.NUI
Assembly:
Tizen.NUI.dll

Enumeration for the comparison function used on the stencil buffer.

C#
Copy
public enum StencilFunctionType : int
Name Description
Always

Always passes

Equal

Passes if ( reference & mask ) = ( stencil & mask )

Greater

Passes if ( reference & mask ) > ( stencil & mask )

GreaterEqual

Passes if ( reference & mask ) >= ( stencil & mask )

Less

Passes if ( reference & mask ) < ( stencil & mask )

LessEqual

Passes if ( reference & mask ) <= ( stencil & mask )

Never

Always fails

NotEqual

Passes if ( reference & mask ) != ( stencil & mask )

Extension Methods