glRasterPos4s function opengl
GLAPI void GLAPIENTRY glRasterPos4s( GLshort x, GLshort y, GLshort z, GLshort w )
Implementation
void glRasterPos4s(int x, int y, int z, int w) {
  final glRasterPos4sAsFunction = _glRasterPos4s
      .cast<NativeFunction<Void Function(Int16 x, Int16 y, Int16 z, Int16 w)>>()
      .asFunction<void Function(int x, int y, int z, int w)>();
  return glRasterPos4sAsFunction(x, y, z, w);
}