JOGL Snow Leopard and Eclipse
I'm trying to get JOGL running in Eclipse 3.5 on a MacbookPro 64bit Snow Leopard with Java 1.6. The code runs on my XP machine, however, when I try to run it on my macBook, I get this error in Eclipse's console:
Invalid memory access of location 00000000 eip=8fe11f32开发者_开发百科
And thats it. I've tried a few different codes, and they all give me the same error msg.
Any ideas on what to try or where the problem may lie? thanks!
Taking a total shot in the dark, I would guess that somewhere you've got a 32 bit library running on a 64 bit machine. I could easily imagine that some bit-twiddly optimized code runs right into null pointer territory when the size of the pointer is incorrect. Without knowing more, I would suggest making sure everything you're using is built for the right architecture.
Do you have the very latest video driver? Does it support OpenGL?
精彩评论