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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 // "contains", "beginwith", "endwith", "=". "value" is a string. | 61 // "contains", "beginwith", "endwith", "=". "value" is a string. |
62 // | 62 // |
63 // FLOAT includes "op" "value", and "value2". "op" can be any of the | 63 // FLOAT includes "op" "value", and "value2". "op" can be any of the |
64 // following values: "=", "<", "<=", ">", ">=", "any", "between". "value2" is | 64 // following values: "=", "<", "<=", ">", ">=", "any", "between". "value2" is |
65 // only used if "op" is "between". "value" is used for all "op" values except | 65 // only used if "op" is "between". "value" is used for all "op" values except |
66 // "any". "value" and "value2" are valid float numbers. | 66 // "any". "value" and "value2" are valid float numbers. |
67 | 67 |
68 { | 68 { |
69 "name": "software rendering list", | 69 "name": "software rendering list", |
70 // Please update the version number whenever you change this file. | 70 // Please update the version number whenever you change this file. |
71 "version": "2.5", | 71 "version": "2.6", |
72 "entries": [ | 72 "entries": [ |
73 { | 73 { |
74 "id": 1, | 74 "id": 1, |
75 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac."
, | 75 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac."
, |
76 "webkit_bugs": [47028], | 76 "webkit_bugs": [47028], |
77 "os": { | 77 "os": { |
78 "type": "macosx" | 78 "type": "macosx" |
79 }, | 79 }, |
80 "vendor_id": "0x1002", | 80 "vendor_id": "0x1002", |
81 "device_id": ["0x7249"], | 81 "device_id": ["0x7249"], |
(...skipping 587 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
669 "op": "=", | 669 "op": "=", |
670 "number": "10.7" | 670 "number": "10.7" |
671 } | 671 } |
672 }, | 672 }, |
673 "vendor_id": "0x8086", | 673 "vendor_id": "0x8086", |
674 "device_id": ["0x0166"], | 674 "device_id": ["0x0166"], |
675 "multi_gpu_category": "any", | 675 "multi_gpu_category": "any", |
676 "blacklist": [ | 676 "blacklist": [ |
677 "all" | 677 "all" |
678 ] | 678 ] |
| 679 }, |
| 680 { |
| 681 "id": 45, |
| 682 "description": "Parallels drivers older than 7 are buggy.", |
| 683 "cr_bugs": [138105], |
| 684 "os": { |
| 685 "type": "win" |
| 686 }, |
| 687 "vendor_id": "0x1ab8", |
| 688 "driver_version": { |
| 689 "op": "<", |
| 690 "number": "7" |
| 691 }, |
| 692 "blacklist": [ |
| 693 "all" |
| 694 ] |
679 } | 695 } |
680 ] | 696 ] |
681 } | 697 } |
OLD | NEW |