glRotatexOes function opengl_glext

void glRotatexOes(
  1. int angle,
  2. int x,
  3. int y,
  4. int z,
)
GLAPI void APIENTRY glRotatexOES (GLfixed angle, GLfixed x, GLfixed y, GLfixed z)

Implementation

void glRotatexOes(int angle, int x, int y, int z) {
  final glRotatexOesAsFunction = _glRotatexOes
      .cast<
        NativeFunction<Void Function(Int32 angle, Int32 x, Int32 y, Int32 z)>
      >()
      .asFunction<void Function(int angle, int x, int y, int z)>();
  return glRotatexOesAsFunction(angle, x, y, z);
}