glDepthRangef function opengl_glext

void glDepthRangef(
  1. double n,
  2. double f
)
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);
}