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" |
] |
} |
] |