diff options
author | Sven Gothel <[email protected]> | 2010-11-12 03:33:53 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-11-12 03:33:53 +0100 |
commit | dac35658fb0b04e66f2e6cbce175090dcc48bde4 (patch) | |
tree | 67132669da41a0fd5a2ea9f6107246529794190d /src/jogl/classes/javax/media/opengl/GLProfile.java | |
parent | c2e805f5cf9c209cfbd1a3082a347d9f3d58c9d5 (diff) |
Adapt to GlueGen Version changes; Adding NativeWindowVersion, JoglVersion and NewtVersion.
Adapt to GlueGen Version changes:
b735755815312b5fe2c003642de60711be1cd645 .. 556c7e70d3d57aa99b5787b1e4d8a7b1c299ed3f
Show information of all subcomponenet.
Diffstat (limited to 'src/jogl/classes/javax/media/opengl/GLProfile.java')
-rw-r--r-- | src/jogl/classes/javax/media/opengl/GLProfile.java | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/jogl/classes/javax/media/opengl/GLProfile.java b/src/jogl/classes/javax/media/opengl/GLProfile.java index 5eb77d8bb..c5f5a8511 100644 --- a/src/jogl/classes/javax/media/opengl/GLProfile.java +++ b/src/jogl/classes/javax/media/opengl/GLProfile.java @@ -37,14 +37,16 @@ package javax.media.opengl; +import com.jogamp.common.GlueGenVersion; import com.jogamp.common.jvm.JVMUtil; import com.jogamp.common.util.ReflectionUtil; import com.jogamp.common.util.VersionUtil; -import com.jogamp.opengl.util.VersionInfo; +import com.jogamp.nativewindow.NativeWindowVersion; import com.jogamp.opengl.impl.Debug; import com.jogamp.opengl.impl.GLDrawableFactoryImpl; import com.jogamp.opengl.impl.GLDynamicLookupHelper; import com.jogamp.opengl.impl.DesktopGLDynamicLookupHelper; +import com.jogamp.opengl.JoglVersion; import java.util.HashMap; import java.util.Iterator; import java.security.*; @@ -1060,8 +1062,9 @@ public class GLProfile { mappedProfiles = computeProfileMap(); if (DEBUG) { - System.err.print(VersionUtil.getPlatformInfo(null, "GLProfile.init")); - System.err.print(VersionUtil.getManifestInfo(GLProfile.class.getClassLoader(), "GLProfile.init", "javax.media.opengl", "GL", null)); + System.err.println(GlueGenVersion.getInstance().getInfo(null)); + System.err.println(NativeWindowVersion.getInstance().getInfo(null)); + System.err.print(JoglVersion.getInstance().getInfo(null)); System.err.println("GLProfile.init firstUIActionOnProcess "+firstUIActionOnProcess); System.err.println("GLProfile.init isAWTAvailable "+isAWTAvailable); System.err.println("GLProfile.init hasNativeOSFactory "+hasNativeOSFactory); |