[Plib-cvs] CVS: plib/src/pui pu.cxx,1.45,1.46
Brought to you by:
sjbaker
From: M?rten Str?m. <str...@us...> - 2002-03-27 13:49:36
|
Update of /cvsroot/plib/plib/src/pui In directory usw-pr-cvs1:/tmp/cvs-serv23587 Modified Files: pu.cxx Log Message: Removed GLU dependency. Index: pu.cxx =================================================================== RCS file: /cvsroot/plib/plib/src/pui/pu.cxx,v retrieving revision 1.45 retrieving revision 1.46 diff -u -d -r1.45 -r1.46 --- pu.cxx 23 Mar 2002 15:06:44 -0000 1.45 +++ pu.cxx 27 Mar 2002 13:49:33 -0000 1.46 @@ -288,7 +288,7 @@ glMatrixMode ( GL_PROJECTION ) ; glPushMatrix () ; glLoadIdentity () ; - gluOrtho2D ( 0, w, 0, h ) ; + glOrtho ( 0, w, 0, h, -1, 1 ) ; glMatrixMode ( GL_MODELVIEW ) ; glPushMatrix () ; glLoadIdentity () ; |