From: Kenneth B. R. <kbr...@al...> - 2002-02-01 08:54:49
|
> I am now using the GLEventListener mechanism instead of inheriting from > GLAnimCanvas. But my app still freezes after a few window resizes on Solaris > 8. (BTW, it runs fine on Window NT.) Try sending the process a SIGQUIT or pressing Ctrl-\ at the command line to get a thread dump. If the VM is wedged really hard this will not produce any output, but if it does, then it's likely a Java-level deadlock which you can diagnose with the resulting stack traces. > I noticed that the latest GL4Java version (2.8.2.0) is released for > "SUNOS_57_Solaris." Does anyone know if this Solaris 7 version tested on > Solaris 8 yet? I am wondering if my resize problem is related to this OS > issue. Those builds were actually built on Solaris 8. > When using GL4Java on Solaris, I consistantly get the following > printout in the command window: > > GLINFO: cannot find glXGetProcAddress* in OpenGL library libGL.so > > Does anyone know if this is critical, or just a warning of a benign problem? OpenGL for Java has fallback mechanisms, like using dlsym(), built in, so this is probably benign. I don't remember precisely whether I have seen this message on my own machine but it rings a bell. |