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

Unified Diff: gpu/config/software_rendering_list_json.cc

Issue 2645123003: Disable all GPU support on Linux Mesa driver 10.1.3 or older. (Closed)
Patch Set: Fix osmesa rule exception. Remove GpuProcess_software_gpu_process test. Created 3 years, 10 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 | « content/test/gpu/gpu_tests/gpu_process_integration_test.py ('k') | 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 7c8acc302e0cc97872bd487e1af8613082fdeec9..5e76ecf739a43f5390b9a7ba37cba59efb96d771 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": "12.14",
+ "version": "12.15",
"entries": [
{
"id": 1,
@@ -227,26 +227,6 @@ const char kSoftwareRenderingListJson[] = LONG_STRING_CONST(
]
},
{
- "id": 23,
- "description": "Mesa drivers in linux older than 7.11 are assumed to be buggy",
- "os": {
- "type": "linux"
- },
- "driver_vendor": "Mesa",
- "driver_version": {
- "op": "<",
- "value": "7.11"
- },
- "exceptions": [
- {
- "driver_vendor": "osmesa"
- }
- ],
- "features": [
- "all"
- ]
- },
- {
"id": 27,
"description": "ATI/AMD cards with older drivers in Linux are crash-prone",
"cr_bugs": [95934, 94973, 136240, 357314],
@@ -428,7 +408,7 @@ const char kSoftwareRenderingListJson[] = LONG_STRING_CONST(
{
"id": 50,
"description": "Disable VMware software renderer on older Mesa",
- "cr_bugs": [145531, 332596, 571899],
+ "cr_bugs": [145531, 332596, 571899, 629434],
"os": {
"type": "linux"
},
@@ -1481,6 +1461,30 @@ LONG_STRING_CONST(
"features": [
"accelerated_video_decode"
]
+ },
+ {
+ "id": 134,
+ "description": "Mesa driver 10.1.3 renders incorrectly and crashes on multiple vendors",
+ "cr_bugs": [629434],
+ "os": {
+ "type": "linux"
+ },
+ "driver_vendor": "Mesa",
+ "driver_version": {
+ "op": "<=",
+ "value": "10.1.3"
+ },
+ "exceptions": [
+ {
+ "gl_renderer": ".*SVGA3D.*"
+ },
+ {
+ "gl_renderer": ".*Gallium.*llvmpipe.*"
+ }
+ ],
+ "features": [
+ "all"
+ ]
}
]
}
« no previous file with comments | « content/test/gpu/gpu_tests/gpu_process_integration_test.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698