glRasterPos2f function opengl
GLAPI void GLAPIENTRY glRasterPos2f( GLfloat x, GLfloat y )
Implementation
void glRasterPos2f(double x, double y) {
  final glRasterPos2fAsFunction = _glRasterPos2f
      .cast<NativeFunction<Void Function(Float x, Float y)>>()
      .asFunction<void Function(double x, double y)>();
  return glRasterPos2fAsFunction(x, y);
}