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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 // "contains", "beginwith", "endwith", "=". "value" is a string. | 52 // "contains", "beginwith", "endwith", "=". "value" is a string. |
53 // | 53 // |
54 // FLOAT includes "op" "value", and "value2". "op" can be any of the | 54 // FLOAT includes "op" "value", and "value2". "op" can be any of the |
55 // following values: "=", "<", "<=", ">", ">=", "any", "between". "value2" is | 55 // following values: "=", "<", "<=", ">", ">=", "any", "between". "value2" is |
56 // only used if "op" is "between". "value" is used for all "op" values except | 56 // only used if "op" is "between". "value" is used for all "op" values except |
57 // "any". "value" and "value2" are valid float numbers. | 57 // "any". "value" and "value2" are valid float numbers. |
58 | 58 |
59 { | 59 { |
60 "name": "software rendering list", | 60 "name": "software rendering list", |
61 // Please update the version number whenever you change this file. | 61 // Please update the version number whenever you change this file. |
62 "version": "1.31", | 62 "version": "1.32", |
63 "entries": [ | 63 "entries": [ |
64 { | 64 { |
65 "id": 1, | 65 "id": 1, |
66 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac."
, | 66 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac."
, |
67 "webkit_bugs": [47028], | 67 "webkit_bugs": [47028], |
68 "os": { | 68 "os": { |
69 "type": "macosx" | 69 "type": "macosx" |
70 }, | 70 }, |
71 "vendor_id": "0x1002", | 71 "vendor_id": "0x1002", |
72 "device_id": ["0x7249"], | 72 "device_id": ["0x7249"], |
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
262 "vendor_id": "0x8086", | 262 "vendor_id": "0x8086", |
263 "exceptions": [ | 263 "exceptions": [ |
264 { | 264 { |
265 "device_id": ["0x0102", "0x0106", "0x0112", "0x0116", "0x0122", "0x012
6", "0x010a", "0x0152", "0x0156", "0x015a", "0x0162", "0x0166"], | 265 "device_id": ["0x0102", "0x0106", "0x0112", "0x0116", "0x0122", "0x012
6", "0x010a", "0x0152", "0x0156", "0x015a", "0x0162", "0x0166"], |
266 "driver_version": { | 266 "driver_version": { |
267 "op": ">=", | 267 "op": ">=", |
268 "number": "8.0" | 268 "number": "8.0" |
269 } | 269 } |
270 }, | 270 }, |
271 { | 271 { |
272 "device_id": ["0xa001", "0xa002", "0xa011", "0xa012"], | 272 "device_id": ["0xa001", "0xa002", "0xa011", "0xa012", "0x29a2", "0x299
2", "0x2982", "0x2972", "0x2a02", "0x2a12", "0x2a42", "0x2e02", "0x2e12", "0x2e2
2", "0x2e32", "0x2e42", "0x2e92"], |
273 "driver_version": { | 273 "driver_version": { |
274 "op": ">", | 274 "op": ">", |
275 "number": "8.0.2" | 275 "number": "8.0.2" |
276 } | 276 } |
277 }, | 277 }, |
278 { | 278 { |
279 "device_id": ["0x0042", "0x0046"], | 279 "device_id": ["0x0042", "0x0046"], |
280 "driver_version": { | 280 "driver_version": { |
281 "op": ">=", | 281 "op": ">=", |
282 "number": "8.0.2" | 282 "number": "8.0.2" |
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
534 "type": "win" | 534 "type": "win" |
535 }, | 535 }, |
536 "vendor_id": "0x5333", | 536 "vendor_id": "0x5333", |
537 "device_id": ["0x8811"], | 537 "device_id": ["0x8811"], |
538 "blacklist": [ | 538 "blacklist": [ |
539 "all" | 539 "all" |
540 ] | 540 ] |
541 } | 541 } |
542 ] | 542 ] |
543 } | 543 } |
OLD | NEW |