up vote 2 down vote favorite
2
share [g+] share [fb]

How may I force an application to use software based opengl rendering on Ubuntu?

link|improve this question
What (kind of) application are we talking about? – Bobby Sep 24 '10 at 8:13
feedback

migrated from stackoverflow.com Feb 8 '10 at 2:30

This question came from our site for professional and enthusiast programmers.

2 Answers

sudo apt-get install libgl1-mesa-swx11

will remove the libgl1-mesa-glx hardware-accelerated Mesa libraries and install the software-only renderer.

Alternately, you can set LIBGL_ALWAYS_SOFTWARE=1, which will only affect programs started with that environment variable, not the entire system.

link|improve this answer
feedback

If this is about your own application, you can link to the software OpenGL implementation Mesa3D.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown