Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(233)

Unified Diff: gpu/config/software_rendering_list_json.cc

Issue 130153002: Allow WMware software renderer with newer Mesa drivers in Linux (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/config/software_rendering_list_json.cc
diff --git a/gpu/config/software_rendering_list_json.cc b/gpu/config/software_rendering_list_json.cc
index 0efb969f76c88fc7ad5f6ae63c316470aea1df32..9ac4aa30780690169e6619a1bca06822d695c187 100644
--- a/gpu/config/software_rendering_list_json.cc
+++ b/gpu/config/software_rendering_list_json.cc
@@ -18,7 +18,7 @@ const char kSoftwareRenderingListJson[] = LONG_STRING_CONST(
{
"name": "software rendering list",
// Please update the version number whenever you change this file.
- "version": "6.22",
+ "version": "6.23",
"entries": [
{
"id": 1,
@@ -566,8 +566,8 @@ const char kSoftwareRenderingListJson[] = LONG_STRING_CONST(
},
{
"id": 50,
- "description": "Disable VMware software renderer",
- "cr_bugs": [145531],
+ "description": "Disable VMware software renderer on older Mesa",
+ "cr_bugs": [145531, 332596],
"os": {
"type": "linux"
},
@@ -575,6 +575,18 @@ const char kSoftwareRenderingListJson[] = LONG_STRING_CONST(
"op": "beginwith",
"value": "VMware"
},
+ "exceptions": [
+ {
+ "driver_vendor": {
+ "op": "=",
+ "value": "Mesa"
+ },
+ "driver_version": {
+ "op": ">=",
+ "value": "9.2.1"
+ }
+ }
+ ],
"features": [
"all"
]
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698