gluPerspective

Hi all,

I’ve downloaded 1.1.08b and I’m trying to test it with my current code. However, I get the following exception:

java.lang.UnsatisfiedLinkError: dispatch_gluPerspective
at net.java.games.jogl.impl.GLUImpl.dispatch_gluPerspective(Native Method)
at net.java.games.jogl.impl.GLUImpl.gluPerspective(GLUImpl.java:409)

I also get errors like:

java.lang.NoSuchMethodError: net.java.games.jogl.GLU.gluUnProject(DDD[D[D[I[D[D[D)Z

Any ideas why this is happening in this JOGL version? The previous one worked OK with my current code.

N

The JVM is probably finding an older version of JOGL. Please go through and delete all copies of jogl.jar and jogl.dll from your machine. In b8 we went to an all java GLU implementation so some of the native signatures probably changed.

You’re absolutely right! Thanks for your tip!