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.11", | 71 "version": "3.1", |
Ken Russell (switch to Gerrit)
2012/09/21 19:08:02
Just curious, any particular reason to update the
Zhenyao Mo
2012/09/21 19:57:59
This is to reflect now the file is in content/.
| |
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 599 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
681 "number2": "10.8.1" | 681 "number2": "10.8.1" |
682 } | 682 } |
683 }, | 683 }, |
684 "multi_gpu_style": "optimus", | 684 "multi_gpu_style": "optimus", |
685 "vendor_id": "0x10de", | 685 "vendor_id": "0x10de", |
686 "device_id": ["0x0fd5"], | 686 "device_id": ["0x0fd5"], |
687 "blacklist": [ | 687 "blacklist": [ |
688 "flash_3d", | 688 "flash_3d", |
689 "flash_stage3d" | 689 "flash_stage3d" |
690 ] | 690 ] |
691 }, | |
692 { | |
693 "id": 50, | |
694 "description": "Disable VMWare software renderer.", | |
695 "cr_bugs": [145531], | |
696 "os": { | |
697 "type": "linux" | |
698 }, | |
699 "gl_vendor": { | |
700 "op": "beginwith", | |
701 "value": "VMWare" | |
Ken Russell (switch to Gerrit)
2012/09/21 19:08:02
The capitalization doesn't match that in the bug r
Zhenyao Mo
2012/09/21 19:57:59
Thanks for catching this. Updated.
| |
702 }, | |
703 "blacklist": [ | |
704 "all" | |
705 ] | |
691 } | 706 } |
692 ] | 707 ] |
693 } | 708 } |
OLD | NEW |