glOrthoxOes function opengl_glext
GLAPI void APIENTRY glOrthoxOES (GLfixed l, GLfixed r, GLfixed b, GLfixed t, GLfixed n, GLfixed f)
Implementation
void glOrthoxOes(int l, int r, int b, int t, int n, int f) {
final glOrthoxOesAsFunction = _glOrthoxOes
.cast<
NativeFunction<
Void Function(Int32 l, Int32 r, Int32 b, Int32 t, Int32 n, Int32 f)
>
>()
.asFunction<void Function(int l, int r, int b, int t, int n, int f)>();
return glOrthoxOesAsFunction(l, r, b, t, n, f);
}