 | glDepthFunc Method |
Specify the value used for depth buffer comparisons.
Namespace:
Ooogles
Assembly:
Ooogles (in Ooogles.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic static void DepthFunc(
glCompareFunc func
)
Public Shared Sub DepthFunc (
func As glCompareFunc
)
public:
static void DepthFunc(
glCompareFunc func
)
static member DepthFunc :
func : glCompareFunc -> unit
Parameters
- func
- Type: OooglesglCompareFunc
specifies the depth comparison function. The initial value is Less.
Remarks
This method specifies the function used to compare each incoming pixel depth value with the depth value present in the depth buffer.
The comparison is performed only if depth testing is enabled.
(See
Enable(glCapability) and
Disable(glCapability) of
DepthTest.)
Initially, depth testing is disabled.
If depth testing is disabled or no depth buffer exists, it is as if the depth test always passes.
Note: even if the depth buffer exists and the depth mask is non-zero,
the depth buffer is not updated if the depth test is disabled.
OpenGL API: glDepthFunc
See Also