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.3", | 91 "version": "6.4", |
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 1018 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1120 "os": { | 1120 "os": { |
1121 "type": "win" | 1121 "type": "win" |
1122 }, | 1122 }, |
1123 "driver_vendor": { | 1123 "driver_vendor": { |
1124 "op": "=", | 1124 "op": "=", |
1125 "value": "Microsoft" | 1125 "value": "Microsoft" |
1126 }, | 1126 }, |
1127 "features": [ | 1127 "features": [ |
1128 "all" | 1128 "all" |
1129 ] | 1129 ] |
| 1130 }, |
| 1131 { |
| 1132 "id": 75, |
| 1133 "description": "Texture sharing not supported on AMD Switchable GPUs due t
o driver issues", |
| 1134 "cr_bugs": [117371], |
| 1135 "os": { |
| 1136 "type": "win" |
| 1137 }, |
| 1138 "multi_gpu_style": "amd_switchable", |
| 1139 "features": [ |
| 1140 "texture_sharing" |
| 1141 ] |
1130 } | 1142 } |
1131 ] | 1143 ] |
1132 } | 1144 } |
1133 | 1145 |
1134 ); // LONG_STRING_CONST macro | 1146 ); // LONG_STRING_CONST macro |
1135 | 1147 |
1136 } // namespace gpu | 1148 } // namespace gpu |
1137 | 1149 |
OLD | NEW |