glWindowPos2dArb function opengl_glext
GLAPI void APIENTRY glWindowPos2dARB (GLdouble x, GLdouble y)
Implementation
void glWindowPos2dArb(double x, double y) {
final glWindowPos2dArbAsFunction = _glWindowPos2dArb
.cast<NativeFunction<Void Function(Double x, Double y)>>()
.asFunction<void Function(double x, double y)>();
return glWindowPos2dArbAsFunction(x, y);
}