| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 // following values: "=", "<", "<=", ">", ">=", "any", "between". "number2" is | 44 // following values: "=", "<", "<=", ">", ">=", "any", "between". "number2" is |
| 45 // only used if "op" is "between". "number" is used for all "op" values except | 45 // only used if "op" is "between". "number" is used for all "op" values except |
| 46 // "any". "number" and "number2" are in the format of x, x.x, x.x.x, etc. | 46 // "any". "number" and "number2" are in the format of x, x.x, x.x.x, etc. |
| 47 // | 47 // |
| 48 // STRING includes "op" and "value". "op" can be any of the following values: | 48 // STRING includes "op" and "value". "op" can be any of the following values: |
| 49 // "contains", "beginwith", "endwith", "=". "value" is a string. | 49 // "contains", "beginwith", "endwith", "=". "value" is a string. |
| 50 | 50 |
| 51 { | 51 { |
| 52 "name": "software rendering list", | 52 "name": "software rendering list", |
| 53 // Please update the version number whenever you change this file. | 53 // Please update the version number whenever you change this file. |
| 54 "version": "1.24", | 54 "version": "1.25", |
| 55 "entries": [ | 55 "entries": [ |
| 56 { | 56 { |
| 57 "id": 1, | 57 "id": 1, |
| 58 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac."
, | 58 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac."
, |
| 59 "webkit_bugs": [47028], | 59 "webkit_bugs": [47028], |
| 60 "os": { | 60 "os": { |
| 61 "type": "macosx" | 61 "type": "macosx" |
| 62 }, | 62 }, |
| 63 "vendor_id": "0x1002", | 63 "vendor_id": "0x1002", |
| 64 "device_id": ["0x7249"], | 64 "device_id": ["0x7249"], |
| (...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 446 "type": "linux" | 446 "type": "linux" |
| 447 }, | 447 }, |
| 448 "vendor_id": "0x10de", | 448 "vendor_id": "0x10de", |
| 449 "gl_vendor": { | 449 "gl_vendor": { |
| 450 "op": "beginwith", | 450 "op": "beginwith", |
| 451 "value": "nouveau" | 451 "value": "nouveau" |
| 452 }, | 452 }, |
| 453 "blacklist": [ | 453 "blacklist": [ |
| 454 "all" | 454 "all" |
| 455 ] | 455 ] |
| 456 }, |
| 457 { |
| 458 "id": 31, |
| 459 "description": "Sis Mirage 3 Graphics is not compatible.", |
| 460 "cr_bugs": [108449], |
| 461 "os": { |
| 462 "type": "win" |
| 463 }, |
| 464 "vendor_id": "0x1039", |
| 465 "device_id": ["0x6351"], |
| 466 "blacklist": [ |
| 467 "all" |
| 468 ] |
| 456 } | 469 } |
| 457 ] | 470 ] |
| 458 } | 471 } |
| OLD | NEW |