glRasterPos3xOes function opengl_glext

void glRasterPos3xOes(
  1. int x,
  2. int y,
  3. int z
)
GLAPI void APIENTRY glRasterPos3xOES (GLfixed x, GLfixed y, GLfixed z)

Implementation

void glRasterPos3xOes(int x, int y, int z) {
  final glRasterPos3xOesAsFunction = _glRasterPos3xOes
      .cast<NativeFunction<Void Function(Int32 x, Int32 y, Int32 z)>>()
      .asFunction<void Function(int x, int y, int z)>();
  return glRasterPos3xOesAsFunction(x, y, z);
}