glDepthRangexOes function opengl_glext
GLAPI void APIENTRY glDepthRangexOES (GLfixed n, GLfixed f)
Implementation
void glDepthRangexOes(int n, int f) {
final glDepthRangexOesAsFunction = _glDepthRangexOes
.cast<NativeFunction<Void Function(Int32 n, Int32 f)>>()
.asFunction<void Function(int n, int f)>();
return glDepthRangexOesAsFunction(n, f);
}