summaryrefslogtreecommitdiffstats
path: root/src/demos/GLInfo.java
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2010-04-21 14:36:28 +0200
committerSven Gothel <[email protected]>2010-04-21 14:36:28 +0200
commit7e339aa444a47dfef997f06fc5e75d010d194e3a (patch)
tree34c3de3e47a502032b84583d3970e1cb453a1361 /src/demos/GLInfo.java
parentd13ce73e2919d2dd4bd54599b28beaef34302f5b (diff)
Add win32 script, misc stuff ..
Diffstat (limited to 'src/demos/GLInfo.java')
-rwxr-xr-xsrc/demos/GLInfo.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/demos/GLInfo.java b/src/demos/GLInfo.java
index 7050ab8..b8575e2 100755
--- a/src/demos/GLInfo.java
+++ b/src/demos/GLInfo.java
@@ -93,6 +93,9 @@ public class GLInfo extends Thread implements GLEventListener {
GL gl = drawable.getGL();
GLProfile glp = gl.getGLProfile();
+ System.err.println(glp+" GL Profile Static: "+GLProfile.glAvailabilityToString());
+ System.err.println(glp+" GL Profile Static - MaxFixedFunc: "+GLProfile.getMaxFixedFunc());
+ System.err.println(glp+" GL Profile Static - MaxProgrammable: "+GLProfile.getMaxProgrammable());
System.err.println(glp+" GLCapabilities POST: "+drawable.getChosenGLCapabilities());
System.err.println(glp+" GL Profile: "+drawable.getGLProfile());
System.err.println(glp+" GL:" + gl);