net.java.games.jogl.GLException: Error Freeing OpenGL context
This happens when I try to load a 3DS model (but the error is very strange, since some models work, while others do not.) If anyone can help me please do. Thanks!
net.java.games.jogl.GLException: Error Freeing OpenGL context
This happens when I try to load a 3DS model (but the error is very strange, since some models work, while others do not.) If anyone can help me please do. Thanks!
This basicly means some exception occured while rendering. JOGL catches it and throws this exception. (correct me if I’m wrong - this is based on my experience that even an ArrayIndexOutOfBoundsException is never thrown when it’s occuring while in the rendering-thread)
You could either use DebugGL to see when something goes wrong, or put the whole rendering-code in a try-catch-statement for further analyse.
Code like glVertex3fv(null); crashes the JVM completely.