summaryrefslogtreecommitdiff
path: root/panels/info
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2015-01-16 00:47:15 +0100
committerBastien Nocera <hadess@hadess.net>2015-01-16 00:47:15 +0100
commit7564b7951892227a2a1d26de132465a624a70eee (patch)
tree3c5b7ac94f823d9f2e41f028c2613856e3bfe8da /panels/info
parentf30e6df1d4665b06a45ad7bbe7a2ed2bfa9387f5 (diff)
downloadgnome-control-center-7564b7951892227a2a1d26de132465a624a70eee.tar.gz
info: Add debug for unmodified GL_RENDERER string
Useful to know what the original version looks like.
Diffstat (limited to 'panels/info')
-rw-r--r--panels/info/cc-info-panel.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/panels/info/cc-info-panel.c b/panels/info/cc-info-panel.c
index 9fba21584..e29154fba 100644
--- a/panels/info/cc-info-panel.c
+++ b/panels/info/cc-info-panel.c
@@ -344,6 +344,7 @@ get_graphics_data_glx_renderer ()
glXMakeContextCurrent (display, glxwin, glxwin, context);
renderer = (char *) glGetString (GL_RENDERER);
+ g_debug ("Got GL_RENDERER: '%s'", renderer);
renderer = renderer ? prettify_info (renderer) : NULL;
glXMakeContextCurrent (display, None, None, NULL);