glDepthRangefOes function opengl_glext

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