glWindowPos2f function opengl_glext

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

Implementation

void glWindowPos2f(double x, double y) {
  final glWindowPos2fAsFunction = _glWindowPos2f
      .cast<NativeFunction<Void Function(Float x, Float y)>>()
      .asFunction<void Function(double x, double y)>();
  return glWindowPos2fAsFunction(x, y);
}