From: <eli...@us...> - 2007-05-27 13:09:49
|
Revision: 2830 http://svn.sourceforge.net/java-game-lib/?rev=2830&view=rev Author: elias_naur Date: 2007-05-27 06:09:48 -0700 (Sun, 27 May 2007) Log Message: ----------- Display: Add GL error check after initial makeCurrent() (for real this time) Modified Paths: -------------- trunk/LWJGL/src/java/org/lwjgl/opengl/Display.java Modified: trunk/LWJGL/src/java/org/lwjgl/opengl/Display.java =================================================================== --- trunk/LWJGL/src/java/org/lwjgl/opengl/Display.java 2007-05-27 07:48:43 UTC (rev 2829) +++ trunk/LWJGL/src/java/org/lwjgl/opengl/Display.java 2007-05-27 13:09:48 UTC (rev 2830) @@ -767,7 +767,7 @@ private static void makeCurrentAndSetSwapInterval() throws LWJGLException { makeCurrent(); - Util.checkGLerror(); + Util.checkGLError(); setSwapInterval(swap_interval); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |