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