JOGL version label

I can’t find any way to report the JOGL impl version at runtime. I know that I can report OpenGL version and versions of lots of extensions, but I need to log the runtime JOGL version to track JOGL upgrade issues.

I hope I don’t have to hack a label String into my build system. Anybody know? Sorry if I’m just missing it in the API Spec (I really am looking).

hi blaine,
you can find jogl’s version string in the manifest of the jar file.


System.out.println("JOGL version: "+ Package.getPackage("javax.media.opengl").getImplementationVersion());

That works great. Thanks.