I type this LIBGL_DEBUG=verbose glxinfo
because its supposed to help debug video problems and I get this http://pastebin.ubuntu.com/944871/
What does it all mean? Where can I learn more? What do you do with it?
I type this LIBGL_DEBUG=verbose glxinfo
because its supposed to help debug video problems and I get this http://pastebin.ubuntu.com/944871/
What does it all mean? Where can I learn more? What do you do with it?
The provided information is useful for users troubleshooting the OpenGL library and producing information that can help developers debugging the OpenGL library.
Source: http://dri.freedesktop.org/wiki/TestingAndDebugging
The command you are typing in:
LIBGL_DEBUG=verbose glxinfo
defines an environment variableLIBGL_DEBUG
and sets it value toverbose
. Thenglxinfo
starts and check certain environment variables and outputs more debug info in your case. After execution of program glxinfo this environment variable is set back to its prior value (most like it is undefined then).