Re: Can't Initialize!
Posted by François Coupal on Jan 14, 2011; 7:41pm
URL: https://forum.jogamp.org/Can-t-Initialize-tp2112742p2257924.html
Just to clarify, I currently have the following libraries in my build path (in Eclipse)
jogl_desktop
jogl_es1
jogl_es2
nativewindow_awt
nativewindow_x11
They all have the "lib*.so" wrappers, as I am on Linux (i386). Is there any more that are required to launch JOGL? My sample code is this:
import javax.media.opengl.GLProfile;
public class testJOGL2 {
public static void main(String[] args) {
System.loadLibrary("jogl_desktop");
System.loadLibrary("jogl_es1");
System.loadLibrary("jogl_es2");
GLProfile.initSingleton(true);
}
}