I've found a site but it only contained source I would have to compile, and I don't know / don't want to do that, so is there a site with a precompiled version?
I've always found JOGL to have sparse documentation and it's a pain to set up.
I actually don't see a precompiled version on their site or websites that heavily use JOGL in tutorials, etc.
It looks like you're going to have to [url=http://download.java.net/media/jogl/doc/HowToBuild.html]build JOGL yourself.[/url]
[QUOTE=andersonmat;25642514]I've always found JOGL to have sparse documentation and it's a pain to set up.
I actually don't see a precompiled version on their site or websites that heavily use JOGL in tutorials, etc.
It looks like you're going to have to [url=http://download.java.net/media/jogl/doc/HowToBuild.html]build JOGL yourself.[/url][/QUOTE]
I've downloaded a build from 2009 instead, then I followed the instructions and put the jogl.jar file in the lib/ext folder of jre1.6, and jogl.dll in the bin folder. Started netbeans and dropped in the example file, ran it but it gives this error (basically it doesn't find the libraries)
[code]run:
java.lang.NoClassDefFoundError: jogl1/Main
Caused by: java.lang.ClassNotFoundException: jogl1.Main
at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
Could not find the main class: jogl1.Main. Program will exit.
Exception in thread "main" Java Result: 1
BUILD SUCCESSFUL (total time: 3 seconds)[/code]