glWindowPos2f function opengl_glext
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);
}