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

Unified Diff: gpu/config/software_rendering_list_json.cc

Issue 215493002: Enable gpu features for AMD gpu with newer Mesa drivers on Linux (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 9 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 86f26306f5fd1749e4153b09a4f9ee18ed583205..dcfbaacbf84652713b0ce13ac6d34b7efd0c03d1 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": "7.3",
+ "version": "7.4",
"entries": [
{
"id": 1,
@@ -68,8 +68,8 @@ const char kSoftwareRenderingListJson[] = LONG_STRING_CONST(
},
{
"id": 5,
- "description": "ATI/AMD cards with older or third-party drivers in Linux are crash-prone",
- "cr_bugs": [71381, 76428, 73910, 101225, 136240],
+ "description": "ATI/AMD cards with older drivers in Linux are crash-prone",
+ "cr_bugs": [71381, 76428, 73910, 101225, 136240, 357314],
"os": {
"type": "linux"
},
@@ -85,6 +85,16 @@ const char kSoftwareRenderingListJson[] = LONG_STRING_CONST(
"style": "lexical",
"value": "8.98"
}
+ },
+ {
+ "driver_vendor": {
+ "op": "=",
+ "value": "Mesa"
+ },
+ "driver_version": {
+ "op": ">=",
+ "value": "10.0.4"
+ }
}
],
"features": [
@@ -244,7 +254,7 @@ const char kSoftwareRenderingListJson[] = LONG_STRING_CONST(
{
"id": 27,
"description": "ATI/AMD cards with older drivers in Linux are crash-prone",
- "cr_bugs": [95934, 94973, 136240],
+ "cr_bugs": [95934, 94973, 136240, 357314],
"os": {
"type": "linux"
},
@@ -263,6 +273,16 @@ const char kSoftwareRenderingListJson[] = LONG_STRING_CONST(
"style": "lexical",
"value": "8.98"
}
+ },
+ {
+ "driver_vendor": {
+ "op": "=",
+ "value": "Mesa"
+ },
+ "driver_version": {
+ "op": ">=",
+ "value": "10.0.4"
+ }
}
],
"features": [
@@ -272,7 +292,7 @@ const char kSoftwareRenderingListJson[] = LONG_STRING_CONST(
{
"id": 28,
"description": "ATI/AMD cards with third-party drivers in Linux are crash-prone",
- "cr_bugs": [95934, 94973],
+ "cr_bugs": [95934, 94973, 357314],
"os": {
"type": "linux"
},
@@ -284,6 +304,18 @@ const char kSoftwareRenderingListJson[] = LONG_STRING_CONST(
"op": "contains",
"value": "AMD"
},
+ "exceptions": [
+ {
+ "driver_vendor": {
+ "op": "=",
+ "value": "Mesa"
+ },
+ "driver_version": {
+ "op": ">=",
+ "value": "10.0.4"
+ }
+ }
+ ],
"features": [
"all"
]
@@ -291,7 +323,7 @@ const char kSoftwareRenderingListJson[] = LONG_STRING_CONST(
{
"id": 29,
"description": "ATI/AMD cards with third-party drivers in Linux are crash-prone",
- "cr_bugs": [95934, 94973],
+ "cr_bugs": [95934, 94973, 357314],
"os": {
"type": "linux"
},
@@ -303,6 +335,18 @@ const char kSoftwareRenderingListJson[] = LONG_STRING_CONST(
"op": "contains",
"value": "ATI"
},
+ "exceptions": [
+ {
+ "driver_vendor": {
+ "op": "=",
+ "value": "Mesa"
+ },
+ "driver_version": {
+ "op": ">=",
+ "value": "10.0.4"
+ }
+ }
+ ],
"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