Hi all
I’m currently doing a JOGL applet test in Mac OSX, and I’m using the JOGLAppletLauncher code downloaded from jogl.dev.java.net to launch my applet.
I put jogl.jar, jogl-1_0_0-macosx-ppc.jar, and jogl-1_0_0-macosx-universal.jar in the same place as my jar.
When I launch the applet (thru the applet launcher), it seems to run the applet launcher properly, but when my actual JOGL applet
begin execution, it will throw exceptions:
java.lang.UnsatisfiedLinkError: JAWT_GetAWT0
at com.sun.opengl.impl.JAWTFactory.JAWT_GetAWT0(Native Method)
at com.sun.opengl.impl.JAWTFactory.JAWT_GetAWT(JAWTFactory.java:38)
at com.sun.opengl.impl.JAWT$1.run(JAWT.java:99)
…
java.lang.UnsatisfiedLinkError: glGenTextures1
at com.sun.opengl.impl.GLImpl.glGenTextures1(Native Method)
at com.sun.opengl.impl.GLImpl.glGenTextures(GLImpl.java:5637)
…
Any of you guys have any idea about this? Any helps is greatly appreciated ^^
Thanks in advance ;D