Enum DepthFunctionType
Definition
- Namespace:
- Tizen.NUI
- Assembly:
- Tizen.NUI.dll
Enumeration for depth functions.
C#Copypublic enum DepthFunctionType : int
Name | Description |
---|---|
Always | Depth test always passes |
Equal | Depth test passes if the incoming depth value is equal to the stored depth value |
Greater | Depth test passes if the incoming depth value is greater than the stored depth value |
GreaterEqual | Depth test passes if the incoming depth value is greater than or equal to the stored depth value |
Less | Depth test passes if the incoming depth value is less than the stored depth value |
LessEqual | Depth test passes if the incoming depth value is less than or equal to the stored depth value |
Never | Depth test never passes |
NotEqual | Depth test passes if the incoming depth value is not equal to the stored depth value |