glWindowPos2fMesa function opengl_glext

void glWindowPos2fMesa(
  1. double x,
  2. double y
)
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);
}