glRasterPos4xOes function opengl_glext
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);
}