glFrustumxOes function opengl_glext
GLAPI void APIENTRY glFrustumxOES (GLfixed l, GLfixed r, GLfixed b, GLfixed t, GLfixed n, GLfixed f)
Implementation
void glFrustumxOes(int l, int r, int b, int t, int n, int f) {
final glFrustumxOesAsFunction = _glFrustumxOes
.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 glFrustumxOesAsFunction(l, r, b, t, n, f);
}