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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 // | 68 // |
69 // FLOAT includes "op" "value", and "value2". "op" can be any of the | 69 // FLOAT includes "op" "value", and "value2". "op" can be any of the |
70 // following values: "=", "<", "<=", ">", ">=", "any", "between". "value2" is | 70 // following values: "=", "<", "<=", ">", ">=", "any", "between". "value2" is |
71 // only used if "op" is "between". "value" is used for all "op" values except | 71 // only used if "op" is "between". "value" is used for all "op" values except |
72 // "any". "value" and "value2" are valid float numbers. | 72 // "any". "value" and "value2" are valid float numbers. |
73 // INT is very much like FLOAT, except that the values need to be integers. | 73 // INT is very much like FLOAT, except that the values need to be integers. |
74 | 74 |
75 { | 75 { |
76 "name": "software rendering list", | 76 "name": "software rendering list", |
77 // Please update the version number whenever you change this file. | 77 // Please update the version number whenever you change this file. |
78 "version": "4.16", | 78 "version": "4.17", |
79 "entries": [ | 79 "entries": [ |
80 { | 80 { |
81 "id": 1, | 81 "id": 1, |
82 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac."
, | 82 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac."
, |
83 "webkit_bugs": [47028], | 83 "webkit_bugs": [47028], |
84 "os": { | 84 "os": { |
85 "type": "macosx" | 85 "type": "macosx" |
86 }, | 86 }, |
87 "vendor_id": "0x1002", | 87 "vendor_id": "0x1002", |
88 "device_id": ["0x7249"], | 88 "device_id": ["0x7249"], |
(...skipping 916 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1005 "os": { | 1005 "os": { |
1006 "type": "macosx", | 1006 "type": "macosx", |
1007 "version": { | 1007 "version": { |
1008 "op": "<", | 1008 "op": "<", |
1009 "number": "10.8" | 1009 "number": "10.8" |
1010 } | 1010 } |
1011 }, | 1011 }, |
1012 "blacklist": [ | 1012 "blacklist": [ |
1013 "force_compositing_mode" | 1013 "force_compositing_mode" |
1014 ] | 1014 ] |
| 1015 }, |
| 1016 { |
| 1017 "id": 67, |
| 1018 "description": "Accelerated 2D Canvas is not supported on WinXP.", |
| 1019 "cr_bugs": [175149], |
| 1020 "os": { |
| 1021 "type": "win", |
| 1022 "version": { |
| 1023 "op": "=", |
| 1024 "number": "5" |
| 1025 } |
| 1026 }, |
| 1027 "blacklist": [ |
| 1028 "accelerated_2d_canvas" |
| 1029 ] |
1015 } | 1030 } |
1016 ] | 1031 ] |
1017 } | 1032 } |
OLD | NEW |