OLD | NEW |
1 // Determines whether certain gpu-related features are blacklisted or not. | 1 // Determines whether certain gpu-related features are blacklisted or not. |
2 // A valid gpu_blacklist.json file are in the format of | 2 // A valid gpu_blacklist.json file are in the format of |
3 // { | 3 // { |
4 // "version": "x.y", | 4 // "version": "x.y", |
5 // "entries": [ | 5 // "entries": [ |
6 // { // entry 1 | 6 // { // entry 1 |
7 // }, | 7 // }, |
8 // ... | 8 // ... |
9 // { // entry n | 9 // { // entry n |
10 // } | 10 // } |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 "os": { | 74 "os": { |
75 "type": "linux" | 75 "type": "linux" |
76 }, | 76 }, |
77 "gl_renderer": { | 77 "gl_renderer": { |
78 "op": "contains", | 78 "op": "contains", |
79 "value": "software" | 79 "value": "software" |
80 }, | 80 }, |
81 "blacklist": [ | 81 "blacklist": [ |
82 "accelerated_compositing" | 82 "accelerated_compositing" |
83 ] | 83 ] |
| 84 }, |
| 85 { // Intel Mobile 945 Express Chipset Family |
| 86 "id": "4", |
| 87 "os": { |
| 88 "type": "win" |
| 89 }, |
| 90 "vendor_id": "0x8086", |
| 91 "device_id": "0x27AE", |
| 92 "blacklist": [ |
| 93 "webgl" |
| 94 ] |
84 } | 95 } |
85 ] | 96 ] |
86 } | 97 } |
OLD | NEW |