Differences between revisions 4 and 5
Revision 4 as of 2011-12-16 15:28:08
Size: 658
Editor: bonaccos
Comment:
Revision 5 as of 2013-09-09 14:16:53
Size: 682
Editor: alders
Comment:
Deletions are marked like this. Additions are marked like this.
Line 25: Line 25:
----
[[CategoryEDUC]]

Problem

When trying to launch an application within a vncserver Session which needs OpenGL the application crashes.

Possible Workaround

Set the environment variable LIBGL_ALWAYS_INDIRECT to yes as followed.

Open a shell and type:

$ setenv LIBGL_ALWAYS_INDIRECT yes       (for 'tcsh')

$ export LIBGL_ALWAYS_INDIRECT=yes       (for 'bash')

After that start your application in the shell as usual:

$ <application>

What does LIBGL_ALWAYS_INDIRECT do? See: http://unix.stackexchange.com/questions/1437/what-does-libgl-always-indirect-1-actually-do and http://www.mesa3d.org/envvars.html


CategoryEDUC