OLD | NEW |
---|---|
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Determines whether certain gpu-related features are blacklisted or not. | 5 // Determines whether certain gpu-related features are blacklisted or not. |
6 // A valid software_rendering_list.json file are in the format of | 6 // A valid software_rendering_list.json file are in the format of |
7 // { | 7 // { |
8 // "version": "x.y", | 8 // "version": "x.y", |
9 // "entries": [ | 9 // "entries": [ |
10 // { // entry 1 | 10 // { // entry 1 |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
81 | 81 |
82 #define LONG_STRING_CONST(...) #__VA_ARGS__ | 82 #define LONG_STRING_CONST(...) #__VA_ARGS__ |
83 | 83 |
84 namespace gpu { | 84 namespace gpu { |
85 | 85 |
86 const char kSoftwareRenderingListJson[] = LONG_STRING_CONST( | 86 const char kSoftwareRenderingListJson[] = LONG_STRING_CONST( |
87 | 87 |
88 { | 88 { |
89 "name": "software rendering list", | 89 "name": "software rendering list", |
90 // Please update the version number whenever you change this file. | 90 // Please update the version number whenever you change this file. |
91 "version": "6.0", | 91 "version": "6.0", |
Zhenyao Mo
2013/07/16 23:03:39
please update the version to 6.1
| |
92 "entries": [ | 92 "entries": [ |
93 { | 93 { |
94 "id": 1, | 94 "id": 1, |
95 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac." , | 95 "description": "ATI Radeon X1900 is not compatible with WebGL on the Mac." , |
96 "webkit_bugs": [47028], | 96 "webkit_bugs": [47028], |
97 "os": { | 97 "os": { |
98 "type": "macosx" | 98 "type": "macosx" |
99 }, | 99 }, |
100 "vendor_id": "0x1002", | 100 "vendor_id": "0x1002", |
101 "device_id": ["0x7249"], | 101 "device_id": ["0x7249"], |
(...skipping 606 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
708 "exceptions": [ | 708 "exceptions": [ |
709 { | 709 { |
710 "os": { | 710 "os": { |
711 "type": "chromeos" | 711 "type": "chromeos" |
712 } | 712 } |
713 }, | 713 }, |
714 { | 714 { |
715 "os": { | 715 "os": { |
716 "type": "win" | 716 "type": "win" |
717 } | 717 } |
718 } | 718 } |
Zhenyao Mo
2013/07/16 23:03:39
missing "," here, which will break the whole black
| |
719 { | |
720 "os": { | |
721 "type": "linux" | |
722 } | |
723 }, | |
Zhenyao Mo
2013/07/16 23:03:39
an extra "," here, please remove
| |
719 ], | 724 ], |
720 "features": [ | 725 "features": [ |
721 "accelerated_video_decode" | 726 "accelerated_video_decode" |
722 ] | 727 ] |
723 }, | 728 }, |
724 { | 729 { |
725 "id": 49, | 730 "id": 49, |
726 "description": "NVidia GeForce GT 650M can cause the system to hang with f lash 3D.", | 731 "description": "NVidia GeForce GT 650M can cause the system to hang with f lash 3D.", |
727 "cr_bugs": [140175], | 732 "cr_bugs": [140175], |
728 "os": { | 733 "os": { |
(...skipping 378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1107 "webgl" | 1112 "webgl" |
1108 ] | 1113 ] |
1109 } | 1114 } |
1110 ] | 1115 ] |
1111 } | 1116 } |
1112 | 1117 |
1113 ); // LONG_STRING_CONST macro | 1118 ); // LONG_STRING_CONST macro |
1114 | 1119 |
1115 } // namespace gpu | 1120 } // namespace gpu |
1116 | 1121 |
OLD | NEW |