DO NOT REPLY TO THIS MESSAGE.  INSTEAD, POST ANY RESPONSES TO THE LINK BELOW.

[STR New]

Link: http://www.fltk.org/str.php?L1988
Version: 1.1.9


Encountered a weird bug that seems to disable all OpenGL drawing after
calling ortho() on a specific laptop (Fujitsu Siemens Amilo A1630 with the
most recent, albeit very old, drivers they offer).

I wrote the following ortho replacement that seems to me to be
transparent, and works on this machine as well:

void myGlWindow::ortho()
{
        glViewport(0,0,w(),h());
        glLoadIdentity();
        glTranslatef(-1,-1,0);
        glScalef(2./w(),2./h(),1);
}

This bug is probably due to the Fujitsu Drivers being from 2004. I don't
know what, if anything, should be done, but I figured I'd post this
snippet just FYI.

Thanks, Vesa


Link: http://www.fltk.org/str.php?L1988
Version: 1.1.9

_______________________________________________
fltk-bugs mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk-bugs

Reply via email to