| 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.29", | 62 "version": "1.30", |
| 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 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 "type": "linux" | 260 "type": "linux" |
| 261 }, | 261 }, |
| 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 }, |
| 271 { |
| 272 "device_id": ["0xa001", "0xa002", "0xa011", "0xa012"], |
| 273 "driver_version": { |
| 274 "op": ">", |
| 275 "number": "8.0.2" |
| 276 } |
| 270 } | 277 } |
| 271 ], | 278 ], |
| 272 "blacklist": [ | 279 "blacklist": [ |
| 273 "all" | 280 "all" |
| 274 ] | 281 ] |
| 275 }, | 282 }, |
| 276 { | 283 { |
| 277 "id": 18, | 284 "id": 18, |
| 278 "description": "NVIDIA Quadro FX 1500 is buggy.", | 285 "description": "NVIDIA Quadro FX 1500 is buggy.", |
| 279 "cr_bugs": [84701], | 286 "cr_bugs": [84701], |
| (...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 520 "type": "win" | 527 "type": "win" |
| 521 }, | 528 }, |
| 522 "vendor_id": "0x5333", | 529 "vendor_id": "0x5333", |
| 523 "device_id": ["0x8811"], | 530 "device_id": ["0x8811"], |
| 524 "blacklist": [ | 531 "blacklist": [ |
| 525 "all" | 532 "all" |
| 526 ] | 533 ] |
| 527 } | 534 } |
| 528 ] | 535 ] |
| 529 } | 536 } |
| OLD | NEW |