glWindowPos2fArb function opengl_glext

void glWindowPos2fArb(
  1. double x,
  2. double y
)
GLAPI void APIENTRY glWindowPos2fARB (GLfloat x, GLfloat y)

Implementation

void glWindowPos2fArb(double x, double y) {
  final glWindowPos2fArbAsFunction = _glWindowPos2fArb
      .cast<NativeFunction<Void Function(Float x, Float y)>>()
      .asFunction<void Function(double x, double y)>();
  return glWindowPos2fArbAsFunction(x, y);
}