diff options
Diffstat (limited to 'chrome/browser/resources/gpu_blacklist.json')
-rw-r--r-- | chrome/browser/resources/gpu_blacklist.json | 46 |
1 files changed, 45 insertions, 1 deletions
diff --git a/chrome/browser/resources/gpu_blacklist.json b/chrome/browser/resources/gpu_blacklist.json index f211db2..2720a6d 100644 --- a/chrome/browser/resources/gpu_blacklist.json +++ b/chrome/browser/resources/gpu_blacklist.json @@ -1,6 +1,6 @@ { "name": "gpu blacklist", - "version": "0.2", + "version": "0.7", "entries": [ { // ATI Radeon X1900 on Mac, BUGWEBKIT=47028 "os": { @@ -31,6 +31,50 @@ "blacklist": [ "webgl" ] + }, + { // Intel Mobile 945 Express Chipset Family + "os": { + "type": "any" + }, + "vendor_id": "0x8086", + "device_id": "0x27AE", + "blacklist": [ + "webgl" + ] + }, + { // All ATI cards in linux, BUG=71381 + "id": "5", + "os": { + "type": "linux" + }, + "vendor_id": "0x1002", + "blacklist": [ + "webgl" + ] + }, + { // ATI Radeon HD2600 on Mac, BUG=68859 + "id": "6", + "os": { + "type": "macosx" + }, + "vendor_id": "0x1002", + "device_id": "0x9583", + "blacklist": [ + "webgl", + "accelerated_compositing" + ] + }, + { // ATI Radeon HD2400 on Mac, BUG=68859 + "id": "7", + "os": { + "type": "macosx" + }, + "vendor_id": "0x1002", + "device_id": "0x94c8", + "blacklist": [ + "webgl", + "accelerated_compositing" + ] } ] } |