how to port from jogl1.1.1 to jogl jsr231?

Hello,

i have a game engine using jogl 1.1.1. How can i port it to JSR-231 easily? I’m using VBO, GLSL shaders, etc. Is there a well-documented way to perform the changes?

Thanks…

See this thread. Briefly, rename net.java.games.jogl to javax.media.opengl, change how you get the GLU and instantiate your GLCanvas, and add a 0 after every outgoing array argument. Also beware of non-zero positions of Buffers; you may need to rewind() them before passing them out.

Thanks a lot!