glWindowPos2fMesa function opengl_glext
GLAPI void APIENTRY glWindowPos2fMESA (GLfloat x, GLfloat y)
Implementation
void glWindowPos2fMesa(double x, double y) {
  final glWindowPos2fMesaAsFunction = _glWindowPos2fMesa
      .cast<NativeFunction<Void Function(Float x, Float y)>>()
      .asFunction<void Function(double x, double y)>();
  return glWindowPos2fMesaAsFunction(x, y);
}