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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 // "contains", "beginwith", "endwith", "=". "value" is a string. | 58 // "contains", "beginwith", "endwith", "=". "value" is a string. |
59 // | 59 // |
60 // FLOAT includes "op" "value", and "value2". "op" can be any of the | 60 // FLOAT includes "op" "value", and "value2". "op" can be any of the |
61 // following values: "=", "<", "<=", ">", ">=", "any", "between". "value2" is | 61 // following values: "=", "<", "<=", ">", ">=", "any", "between". "value2" is |
62 // only used if "op" is "between". "value" is used for all "op" values except | 62 // only used if "op" is "between". "value" is used for all "op" values except |
63 // "any". "value" and "value2" are valid float numbers. | 63 // "any". "value" and "value2" are valid float numbers. |
64 | 64 |
65 { | 65 { |
66 "name": "software rendering list", | 66 "name": "software rendering list", |
67 // Please update the version number whenever you change this file. | 67 // Please update the version number whenever you change this file. |
68 "version": "1.40", | 68 "version": "1.41", |
69 "entries": [ | 69 "entries": [ |
70 { | 70 { |
71 "id": 1, | 71 "id": 1, |
72 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac."
, | 72 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac."
, |
73 "webkit_bugs": [47028], | 73 "webkit_bugs": [47028], |
74 "os": { | 74 "os": { |
75 "type": "macosx" | 75 "type": "macosx" |
76 }, | 76 }, |
77 "vendor_id": "0x1002", | 77 "vendor_id": "0x1002", |
78 "device_id": ["0x7249"], | 78 "device_id": ["0x7249"], |
(...skipping 519 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
598 "version": { | 598 "version": { |
599 "op": "=", | 599 "op": "=", |
600 "number": "5" | 600 "number": "5" |
601 } | 601 } |
602 }, | 602 }, |
603 "vendor_id": "0x1002", | 603 "vendor_id": "0x1002", |
604 "blacklist": [ | 604 "blacklist": [ |
605 "flash_3d", | 605 "flash_3d", |
606 "flash_stage3d" | 606 "flash_stage3d" |
607 ] | 607 ] |
| 608 }, |
| 609 { |
| 610 "id": 40, |
| 611 "description": "GPU driver may cause kernel panic on 2012 Macbook Airs.", |
| 612 "cr_bugs": [134015], |
| 613 "os": { |
| 614 "type": "macosx" |
| 615 }, |
| 616 "vendor_id": "0x8086", |
| 617 "device_id": ["0x0166"], |
| 618 "blacklist": [ |
| 619 "all" |
| 620 ] |
608 } | 621 } |
609 ] | 622 ] |
610 } | 623 } |
OLD | NEW |