glDepthRangefOes function opengl_glext
GLAPI void APIENTRY glDepthRangefOES (GLclampf n, GLclampf f)
Implementation
void glDepthRangefOes(double n, double f) {
final glDepthRangefOesAsFunction = _glDepthRangefOes
.cast<NativeFunction<Void Function(Float n, Float f)>>()
.asFunction<void Function(double n, double f)>();
return glDepthRangefOesAsFunction(n, f);
}