Enum StencilFunction
Definition
- Assembly:
- Tizen.NUI.dll
Enumeration for the comparison function used on the stencil buffer.
public enum StencilFunction
Fields
| 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 ) |