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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 // "contains", "beginwith", "endwith", "=". "value" is a string. | 59 // "contains", "beginwith", "endwith", "=". "value" is a string. |
60 // | 60 // |
61 // FLOAT includes "op" "value", and "value2". "op" can be any of the | 61 // FLOAT includes "op" "value", and "value2". "op" can be any of the |
62 // following values: "=", "<", "<=", ">", ">=", "any", "between". "value2" is | 62 // following values: "=", "<", "<=", ">", ">=", "any", "between". "value2" is |
63 // only used if "op" is "between". "value" is used for all "op" values except | 63 // only used if "op" is "between". "value" is used for all "op" values except |
64 // "any". "value" and "value2" are valid float numbers. | 64 // "any". "value" and "value2" are valid float numbers. |
65 | 65 |
66 { | 66 { |
67 "name": "software rendering list", | 67 "name": "software rendering list", |
68 // Please update the version number whenever you change this file. | 68 // Please update the version number whenever you change this file. |
69 "version": "2.3", | 69 "version": "2.4", |
70 "entries": [ | 70 "entries": [ |
71 { | 71 { |
72 "id": 1, | 72 "id": 1, |
73 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac."
, | 73 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac."
, |
74 "webkit_bugs": [47028], | 74 "webkit_bugs": [47028], |
75 "os": { | 75 "os": { |
76 "type": "macosx" | 76 "type": "macosx" |
77 }, | 77 }, |
78 "vendor_id": "0x1002", | 78 "vendor_id": "0x1002", |
79 "device_id": ["0x7249"], | 79 "device_id": ["0x7249"], |
(...skipping 553 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
633 "version": { | 633 "version": { |
634 "op": "=", | 634 "op": "=", |
635 "number": "10.6" | 635 "number": "10.6" |
636 } | 636 } |
637 }, | 637 }, |
638 "vendor_id": "0x1002", | 638 "vendor_id": "0x1002", |
639 "device_id": ["0x6760"], | 639 "device_id": ["0x6760"], |
640 "blacklist": [ | 640 "blacklist": [ |
641 "webgl" | 641 "webgl" |
642 ] | 642 ] |
| 643 }, |
| 644 { |
| 645 "id": 43, |
| 646 "description": "Intel driver version 8.15.10.1749 has problems sharing tex
tures.", |
| 647 "cr_bugs": [133924], |
| 648 "os": { |
| 649 "type": "win" |
| 650 }, |
| 651 "vendor_id": "0x8086", |
| 652 "driver_version": { |
| 653 "op": "=", |
| 654 "number": "8.15.10.1749" |
| 655 }, |
| 656 "blacklist": [ |
| 657 "texture_sharing" |
| 658 ] |
643 } | 659 } |
644 ] | 660 ] |
645 } | 661 } |
OLD | NEW |