|
From: Elias N. <eli...@us...> - 2003-12-15 11:49:19
|
Update of /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/opengl In directory sc8-pr-cvs1:/tmp/cvs-serv8597/src/java/org/lwjgl/opengl Modified Files: GLCaps.java Log Message: Replaced debug libraries with runtime debug condition Index: GLCaps.java CVS Browser: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/java-game-lib/LWJGL/src/java/org/lwjgl/opengl/GLCaps.java =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/src/java/org/lwjgl/opengl/GLCaps.java,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- GLCaps.java 28 Oct 2003 19:12:54 -0000 1.12 +++ GLCaps.java 15 Dec 2003 11:49:16 -0000 1.13 @@ -162,13 +162,13 @@ } private static void setExtensionFields(HashSet exts, HashMap field_map) { - if(org.lwjgl.Sys.DEBUG) { + if(org.lwjgl.Sys.atDebugLevel()) { System.out.println("Available extensions:"); } Iterator it = exts.iterator(); while (it.hasNext()) { String ext = (String)it.next(); - if(org.lwjgl.Sys.DEBUG) { + if(org.lwjgl.Sys.atDebugLevel()) { System.out.println(ext); } |