| 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 software_rendering_list.json file are in the format of | 2 // A valid software_rendering_list.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 20 matching lines...) Expand all Loading... |
| 31 // following values: "=", "<", "<=", ">", ">=", "any", "between". "number2" is | 31 // following values: "=", "<", "<=", ">", ">=", "any", "between". "number2" is |
| 32 // only used if "op" is "between". "number" is used for all "op" values except | 32 // only used if "op" is "between". "number" is used for all "op" values except |
| 33 // "any". "number" and "number2" are in the format of x, x.x, x.x.x, ect. | 33 // "any". "number" and "number2" are in the format of x, x.x, x.x.x, ect. |
| 34 // | 34 // |
| 35 // STRING includes "op" and "value". "op" can be any of the following values: | 35 // STRING includes "op" and "value". "op" can be any of the following values: |
| 36 // "contains", "beginwith", "endwith", "=". "value" is a string. | 36 // "contains", "beginwith", "endwith", "=". "value" is a string. |
| 37 | 37 |
| 38 { | 38 { |
| 39 "name": "software rendering list", | 39 "name": "software rendering list", |
| 40 // Please update the version number whenever you change this file. | 40 // Please update the version number whenever you change this file. |
| 41 "version": "1.1", | 41 "version": "1.2", |
| 42 "entries": [ | 42 "entries": [ |
| 43 { // ATI Radeon X1900 on Mac, BUGWEBKIT=47028 | 43 { // ATI Radeon X1900 on Mac, BUGWEBKIT=47028 |
| 44 "id": "1", | 44 "id": "1", |
| 45 "os": { | 45 "os": { |
| 46 "type": "macosx" | 46 "type": "macosx" |
| 47 }, | 47 }, |
| 48 "vendor_id": "0x1002", | 48 "vendor_id": "0x1002", |
| 49 "device_id": "0x7249", | 49 "device_id": "0x7249", |
| 50 "blacklist": [ | 50 "blacklist": [ |
| 51 "webgl" | 51 "webgl" |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 { // NVIDIA GeForce 7300 GT on Mac, BUG=73794 | 156 { // NVIDIA GeForce 7300 GT on Mac, BUG=73794 |
| 157 "id": "10", | 157 "id": "10", |
| 158 "os": { | 158 "os": { |
| 159 "type": "macosx" | 159 "type": "macosx" |
| 160 }, | 160 }, |
| 161 "vendor_id": "0x10de", | 161 "vendor_id": "0x10de", |
| 162 "device_id": "0x0393", | 162 "device_id": "0x0393", |
| 163 "blacklist": [ | 163 "blacklist": [ |
| 164 "webgl" | 164 "webgl" |
| 165 ] | 165 ] |
| 166 }, |
| 167 { // ATI Radeon HD2600 XT on Mac, BUG=68859 |
| 168 "id": "11", |
| 169 "os": { |
| 170 "type": "macosx" |
| 171 }, |
| 172 "vendor_id": "0x1002", |
| 173 "device_id": "0x9588", |
| 174 "blacklist": [ |
| 175 "webgl", |
| 176 "accelerated_compositing" |
| 177 ] |
| 166 } | 178 } |
| 167 ] | 179 ] |
| 168 } | 180 } |
| OLD | NEW |