diff options
-rw-r--r-- | make/joglRIversion | 2 | ||||
-rw-r--r-- | make/joglversion | 4 | ||||
-rw-r--r-- | src/classes/com/sun/opengl/impl/Debug.java | 6 |
3 files changed, 7 insertions, 5 deletions
diff --git a/make/joglRIversion b/make/joglRIversion index 76a30ab04..e361f4c51 100644 --- a/make/joglRIversion +++ b/make/joglRIversion @@ -2,7 +2,7 @@ Specification-Title: Java Bindings for OpenGL API Specification Specification-Version: 1.0 Specification-Vendor: Sun Microsystems, Inc. Implementation-Title: Java Bindings for OpenGL Runtime Environment -Implementation-Version: 1.0 Beta2 +Implementation-Version: 1.0 Implementation-Vendor: Sun Microsystems, Inc. Extension-Name: javax.media.opengl Implementation-Vendor-Id: com.sun diff --git a/make/joglversion b/make/joglversion index cb4a8c747..b0eaae91d 100644 --- a/make/joglversion +++ b/make/joglversion @@ -1,8 +1,8 @@ Specification-Title: Java Bindings for OpenGL API Specification -Specification-Version: 1.0 +Specification-Version: 1.0 Public Review plus Specification-Vendor: Sun Microsystems, Inc. Implementation-Title: Java Bindings for OpenGL Runtime Environment -Implementation-Version: 1.0 Beta2 +Implementation-Version: 1.0 Beta2 plus Implementation-Vendor: java.net JOGL community Extension-Name: javax.media.opengl Implementation-Vendor-Id: com.sun diff --git a/src/classes/com/sun/opengl/impl/Debug.java b/src/classes/com/sun/opengl/impl/Debug.java index a2490d1ef..9faa04fa7 100644 --- a/src/classes/com/sun/opengl/impl/Debug.java +++ b/src/classes/com/sun/opengl/impl/Debug.java @@ -40,7 +40,6 @@ package com.sun.opengl.impl; import java.security.*; -import com.sun.opengl.util.Version; /** Helper routines for logging and debugging. */ @@ -53,7 +52,10 @@ public class Debug { verbose = isPropertyDefined("jogl.verbose"); debugAll = isPropertyDefined("jogl.debug"); if (verbose) { - System.err.println("JOGL version " + Version.getVersion()); + Package p = Package.getPackage("javax.media.opengl"); + System.err.println("JOGL specification version " + p.getSpecificationVersion()); + System.err.println("JOGL implementation version " + p.getImplementationVersion()); + System.err.println("JOGL implementation vendor " + p.getImplementationVendor()); } } |