aboutsummaryrefslogtreecommitdiffstats
path: root/src/newt
diff options
context:
space:
mode:
authorMichael Bien <[email protected]>2010-11-18 17:08:04 +0100
committerMichael Bien <[email protected]>2010-11-18 17:08:04 +0100
commit8c9f3bb33732346fab0112b4a2e177b13f4e8087 (patch)
tree0c34bda8d57110c552b6a4731ce6b97db69402ef /src/newt
parent448d9ca99a38f4f107c86ca3475129568cd74cf7 (diff)
print platform info additional to the module info.
Diffstat (limited to 'src/newt')
-rw-r--r--src/newt/classes/com/jogamp/newt/NewtVersion.java1
-rw-r--r--src/newt/classes/com/jogamp/newt/opengl/GLWindow.java2
2 files changed, 3 insertions, 0 deletions
diff --git a/src/newt/classes/com/jogamp/newt/NewtVersion.java b/src/newt/classes/com/jogamp/newt/NewtVersion.java
index a11621370..aee67c4bc 100644
--- a/src/newt/classes/com/jogamp/newt/NewtVersion.java
+++ b/src/newt/classes/com/jogamp/newt/NewtVersion.java
@@ -54,6 +54,7 @@ public class NewtVersion extends JogampVersion {
}
public static void main(String args[]) {
+ System.err.println(VersionUtil.getPlatformInfo());
System.err.println(NewtVersion.getInstance());
}
}
diff --git a/src/newt/classes/com/jogamp/newt/opengl/GLWindow.java b/src/newt/classes/com/jogamp/newt/opengl/GLWindow.java
index 6c0635006..7c0384bd0 100644
--- a/src/newt/classes/com/jogamp/newt/opengl/GLWindow.java
+++ b/src/newt/classes/com/jogamp/newt/opengl/GLWindow.java
@@ -35,6 +35,7 @@
package com.jogamp.newt.opengl;
import com.jogamp.common.GlueGenVersion;
+import com.jogamp.common.util.VersionUtil;
import com.jogamp.nativewindow.NativeWindowVersion;
import com.jogamp.newt.*;
import com.jogamp.newt.event.*;
@@ -862,6 +863,7 @@ public class GLWindow implements GLAutoDrawable, Window, NEWTEventConsumer {
* A most simple JOGL AWT test entry
*/
public static void main(String args[]) {
+ System.err.println(VersionUtil.getPlatformInfo());
System.err.println(GlueGenVersion.getInstance());
System.err.println(NativeWindowVersion.getInstance());
System.err.print(JoglVersion.getInstance());