hi
Can someone please change the following lines in com.xith3d.render.jsr231.OldStyleGLCapabilitiesChooser
- private static final boolean DEBUG = true;
+ private static boolean debug = true;
+
+ public static void enableDebug(boolean b)
+ {
+ debug = b;
+ }
So we can get rid of these annoing GLCapabilities dumps
I don’t know the pendant in lwjgl or if it is even necessary there.