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

Unified Diff: chrome/browser/resources/software_rendering_list.json

Issue 7562025: Blacklist Mesa drivers older than 7.11. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 5 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: chrome/browser/resources/software_rendering_list.json
===================================================================
--- chrome/browser/resources/software_rendering_list.json (revision 95326)
+++ chrome/browser/resources/software_rendering_list.json (working copy)
@@ -47,7 +47,7 @@
{
"name": "software rendering list",
// Please update the version number whenever you change this file.
- "version": "1.15",
+ "version": "1.16",
"entries": [
{
"id": 1,
@@ -329,6 +329,24 @@
"blacklist": [
"all"
]
+ },
+ {
+ "id": 23,
+ "description": "Mesa drivers in linux older than 7.11 are assumed to be buggy.",
+ "os": {
+ "type": "linux"
+ },
+ "driver_vendor": {
+ "op": "=",
+ "value": "Mesa"
+ },
+ "driver_version": {
+ "op": "<",
+ "number": "7.11"
+ },
+ "blacklist": [
+ "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