GNOME Bugzilla – Bug 768292
Empty Graphics string in gnome-control-center running under llvmpipe
Last modified: 2018-01-09 20:35:56 UTC
The GLES helper work broke the Graphics string in gnome-control-center when running under llvmpipe.
Created attachment 330733 [details] [review] check-accelerated: export renderer string also for llvmpipe Since the renderer string is now used to display the graphics label in gnome-control-center, we need to make sure it gets set even if software rendering is in use, else we wind up showing an empty string to the user.
Review of attachment 330733 [details] [review]: Thank you! Looks good.
Attachment 330733 [details] pushed as 51d1e18 - check-accelerated: export renderer string also for llvmpipe
While rebasing gnome-session for Endless, I found that we have a patch applied downstream that fixes a regression introduced by the patch from this bug, so reopening: https://github.com/endlessm/gnome-session/commit/268bb41ccdf8af24047bc7d0ab16aedcf46e07ed
Created attachment 366560 [details] [review] tools: don't check software rendering before GLES helper See the patch attached after rebasing it on top of the master branch
Review of attachment 366560 [details] [review]: ::: tools/gnome-session-check-accelerated.c @@ +255,3 @@ + renderer_string = gl_renderer_string; + else if (gles_software_rendering) + renderer_string = gles_software_rendering; this should say gles_renderer_string i think.
(pushed with that change) Attachment 366560 [details] pushed as 3bbd649 - tools: don't check software rendering before GLES helper
Well, that was quick. Thanks, Ray!