diff options
author | Michael BrĂ¼ning <michael.bruning@digia.com> | 2014-09-22 17:52:57 +0200 |
---|---|---|
committer | Allan Sandfeld Jensen <allan.jensen@theqtcompany.com> | 2015-06-23 14:38:08 +0000 |
commit | 023d188a8362372d09f924f1afbc22ea44a0fee9 (patch) | |
tree | efcb228d23df2581ff5d1b3aee85084ec2b40181 | |
parent | ab816fae75c2f491a9e1c1bfc23a165753824edb (diff) | |
download | qtwebengine-chromium-023d188a8362372d09f924f1afbc22ea44a0fee9.tar.gz |
<chromium> Disable GPU blacklisting for llvmpipe on Windows
This works around the per-se disabling of hardware
acceleration on older versions of Windows when the Gallium
llvmpipe driver is used.
Change-Id: I23dca61cf2309ad6f73279bb001358385866e438
Reviewed-by: Andras Becsi <andras.becsi@theqtcompany.com>
-rw-r--r-- | chromium/gpu/config/software_rendering_list_json.cc | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/chromium/gpu/config/software_rendering_list_json.cc b/chromium/gpu/config/software_rendering_list_json.cc index 7a4d6948f73..c0b165cebe0 100644 --- a/chromium/gpu/config/software_rendering_list_json.cc +++ b/chromium/gpu/config/software_rendering_list_json.cc @@ -774,6 +774,15 @@ LONG_STRING_CONST( "value": "6.0" } }, + "exceptions": [ + { + "driver_vendor": "Mesa", + "gl_renderer": ".*Gallium.*" + }, + { + "driver_vendor": ".*llvmpipe.*" + } + ], "features": [ "all" ] |