diff options
author | Sven Gothel <[email protected]> | 2010-11-09 20:07:21 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-11-09 20:07:21 +0100 |
commit | 597d10f5a5f743a51cfe56f3c381fd80e941a394 (patch) | |
tree | f28d0fcfaab03fc0534c0308a577ca0c0cc93d4f /src/jogl/classes/com/jogamp/opengl | |
parent | 7dce462b56f1e77e3cc2b68cb72c27a549c53f91 (diff) |
Adding simple static main test entry to provide standalone autobuild verification
Diffstat (limited to 'src/jogl/classes/com/jogamp/opengl')
-rw-r--r-- | src/jogl/classes/com/jogamp/opengl/util/VersionInfo.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/jogl/classes/com/jogamp/opengl/util/VersionInfo.java b/src/jogl/classes/com/jogamp/opengl/util/VersionInfo.java index 0359ef492..b7e6b5194 100644 --- a/src/jogl/classes/com/jogamp/opengl/util/VersionInfo.java +++ b/src/jogl/classes/com/jogamp/opengl/util/VersionInfo.java @@ -78,6 +78,8 @@ public class VersionInfo { sb = new StringBuffer(); } + sb.append(prefix+" "+GLProfile.glAvailabilityToString()); + sb.append(Platform.getNewline()); sb.append(prefix+" Swap Interval " + gl.getSwapInterval()); sb.append(Platform.getNewline()); sb.append(prefix+" GL Profile " + gl.getGLProfile()); |