glDepthRangef function opengl_glext
GLAPI void APIENTRY glDepthRangef (GLfloat n, GLfloat f)
Implementation
void glDepthRangef(double n, double f) {
final glDepthRangefAsFunction = _glDepthRangef
.cast<NativeFunction<Void Function(Float n, Float f)>>()
.asFunction<void Function(double n, double f)>();
return glDepthRangefAsFunction(n, f);
}