Module OgamlGraphics.DrawParameter.DepthTest

Depth testing functions enumeration

This module consists of one enumeration of openGL depth functions

type t = ...
Depth testing functions

Possible values

None
No testing, test always passes
Never
Test never passes
Less
Test passes if the incoming value is less (object is closer) than the stored value. Default function
Greater
Test passes if the incoming value is greater
Equal
Test passes if the incoming value is equal
LEqual
Test passes if the incoming value is less than or equal
GEqual
Test passes if the incoming value is greater than or equal
NEqual
Test passes if the incoming value is different than the stored value