glDepthFunc function
GLAPI void GLAPIENTRY glDepthFunc (GLenum func)
Implementation
void glDepthFunc(int func) {
final glDepthFuncLookupFunction =
libGL.lookupFunction<Void Function(Uint32 func), void Function(int func)>(
'glDepthFunc');
return glDepthFuncLookupFunction(func);
}