glFrustumxOes function opengl_glext

void glFrustumxOes(
  1. int l,
  2. int r,
  3. int b,
  4. int t,
  5. int n,
  6. int f,
)
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);
}