From 7564b7951892227a2a1d26de132465a624a70eee Mon Sep 17 00:00:00 2001 From: Bastien Nocera Date: Fri, 16 Jan 2015 00:47:15 +0100 Subject: [PATCH] info: Add debug for unmodified GL_RENDERER string Useful to know what the original version looks like. --- panels/info/cc-info-panel.c | 1 + 1 file changed, 1 insertion(+) 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);