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

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

Issue 6352011: Improve blacklist logic: use more fields (driver_vendor, gl_renderer, ect) fo... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: This should turn linux trybot green Created 9 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
« chrome/browser/gpu_blacklist.cc ('K') | « chrome/browser/gpu_process_host.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/gpu_blacklist.json
===================================================================
--- chrome/browser/resources/gpu_blacklist.json (revision 72173)
+++ chrome/browser/resources/gpu_blacklist.json (working copy)
@@ -1,8 +1,9 @@
{
"name": "gpu blacklist",
- "version": "0.2",
+ "version": "0.3",
"entries": [
{ // ATI Radeon X1900 on Mac, BUGWEBKIT=47028
+ "id": "1",
"os": {
"type": "macosx"
},
@@ -12,24 +13,35 @@
"webgl"
]
},
- { // Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller, BUG=67345,67939
+ { // Intel cards with Mesa driver earlier than 7.9, BUG=66718,67345,67939
+ "id": "2",
"os": {
"type": "linux"
},
"vendor_id": "0x8086",
- "device_id": "0x2a42",
+ "driver_vendor": {
+ "op": "=",
+ "value": "mesa"
+ },
+ "driver_version": {
+ "op": "<",
+ "number": "7.9"
+ },
"blacklist": [
"webgl"
]
},
- { // Intel Corporation Core Processor Integrated Graphics Controller, BUG=66718
+ { // In linux, don't allow GPU compositing if it's software rendering, BUG=59302
+ "id": "3",
"os": {
"type": "linux"
},
- "vendor_id": "0x8086",
- "device_id": "0x0046",
+ "gl_renderer": {
+ "op": "contains",
+ "value": "software"
+ },
"blacklist": [
- "webgl"
+ "accelerated_compositing"
]
}
]
« chrome/browser/gpu_blacklist.cc ('K') | « chrome/browser/gpu_process_host.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698