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