glRasterPos4xOes function opengl_glext

void glRasterPos4xOes(
  1. int x,
  2. int y,
  3. int z,
  4. int w,
)
GLAPI void APIENTRY glRasterPos4xOES (GLfixed x, GLfixed y, GLfixed z, GLfixed w)

Implementation

void glRasterPos4xOes(int x, int y, int z, int w) {
  final glRasterPos4xOesAsFunction = _glRasterPos4xOes
      .cast<NativeFunction<Void Function(Int32 x, Int32 y, Int32 z, Int32 w)>>()
      .asFunction<void Function(int x, int y, int z, int w)>();
  return glRasterPos4xOesAsFunction(x, y, z, w);
}