| OLD | NEW |
| 1 { | 1 { |
| 2 "name": "gpu blacklist", | 2 "name": "gpu blacklist", |
| 3 "version": "0.8", | 3 "version": "0.9", |
| 4 "entries": [ | 4 "entries": [ |
| 5 { // ATI Radeon X1900 on Mac, BUGWEBKIT=47028 | 5 { // ATI Radeon X1900 on Mac, BUGWEBKIT=47028 |
| 6 "os": { | 6 "os": { |
| 7 "type": "macosx" | 7 "type": "macosx" |
| 8 }, | 8 }, |
| 9 "vendor_id": "0x1002", | 9 "vendor_id": "0x1002", |
| 10 "device_id": "0x7249", | 10 "device_id": "0x7249", |
| 11 "blacklist": [ | 11 "blacklist": [ |
| 12 "webgl" | 12 "webgl" |
| 13 ] | 13 ] |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 "id": "8", | 80 "id": "8", |
| 81 "os": { | 81 "os": { |
| 82 "type": "any" | 82 "type": "any" |
| 83 }, | 83 }, |
| 84 "vendor_id": "0x10de", | 84 "vendor_id": "0x10de", |
| 85 "device_id": "0x0324", | 85 "device_id": "0x0324", |
| 86 "blacklist": [ | 86 "blacklist": [ |
| 87 "webgl", | 87 "webgl", |
| 88 "accelerated_compositing" | 88 "accelerated_compositing" |
| 89 ] | 89 ] |
| 90 }, |
| 91 { // Windows XP, BUG=72975 |
| 92 "id": "9", |
| 93 "os": { |
| 94 "type": "win", |
| 95 "version": { |
| 96 "op": "=", |
| 97 "number": "5" |
| 98 } |
| 99 }, |
| 100 "blacklist": [ |
| 101 "webgl", |
| 102 "accelerated_compositing" |
| 103 ] |
| 90 } | 104 } |
| 91 ] | 105 ] |
| 92 } | 106 } |
| OLD | NEW |