| 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.27", | 62 "version": "1.28", |
| 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 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 255 { | 255 { |
| 256 "id": 17, | 256 "id": 17, |
| 257 "description": "Intel mesa drivers are crash-prone.", | 257 "description": "Intel mesa drivers are crash-prone.", |
| 258 "cr_bugs": [76703], | 258 "cr_bugs": [76703], |
| 259 "os": { | 259 "os": { |
| 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"], | 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 "blacklist": [ | 272 "blacklist": [ |
| 273 "all" | 273 "all" |
| 274 ] | 274 ] |
| 275 }, | 275 }, |
| (...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 491 "os": { | 491 "os": { |
| 492 "type": "win" | 492 "type": "win" |
| 493 }, | 493 }, |
| 494 "perf_overall": { | 494 "perf_overall": { |
| 495 "op": "<", | 495 "op": "<", |
| 496 "value": "3.5" | 496 "value": "3.5" |
| 497 }, | 497 }, |
| 498 "blacklist": [ | 498 "blacklist": [ |
| 499 "accelerated_2d_canvas" | 499 "accelerated_2d_canvas" |
| 500 ] | 500 ] |
| 501 }, |
| 502 { |
| 503 "id": 33, |
| 504 "description": "Multisampling is buggy in Intel IvyBridge.", |
| 505 "cr_bugs": [116370], |
| 506 "os": { |
| 507 "type": "linux" |
| 508 }, |
| 509 "vendor_id": "0x8086", |
| 510 "device_id": ["0x0152", "0x0156", "0x015a", "0x0162", "0x0166"], |
| 511 "blacklist": [ |
| 512 "multisampling" |
| 513 ] |
| 501 } | 514 } |
| 502 ] | 515 ] |
| 503 } | 516 } |
| OLD | NEW |