From kde-commits Sat Aug 15 10:08:34 2009 From: Rivo Laks Date: Sat, 15 Aug 2009 10:08:34 +0000 To: kde-commits Subject: playground/games/astrododge/src Message-Id: <1250330914.348590.15695.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=125033092013362 SVN commit 1011630 by rivol: Remove another glu dependancy M +2 -1 glview.cpp --- trunk/playground/games/astrododge/src/glview.cpp #1011629:1011630 @@ -92,7 +92,8 @@ glMatrixMode(GL_PROJECTION); glLoadIdentity(); - gluOrtho2D(0, w, h, 0); + // Same as gluOrtho2D(0, w, h, 0); + glOrtho(0, w, h, 0, -1.0, 1.0); glMatrixMode(GL_MODELVIEW); glLoadIdentity(); }