| 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 // The format of a valid software_rendering_list.json file is defined in | 6 // The format of a valid software_rendering_list.json file is defined in |
| 7 // <gpu/config/gpu_control_list_format.txt>. | 7 // <gpu/config/gpu_control_list_format.txt>. |
| 8 // The supported "features" can be found in <gpu/config/gpu_blacklist.cc>. | 8 // The supported "features" can be found in <gpu/config/gpu_blacklist.cc>. |
| 9 | 9 |
| 10 #include "gpu/config/gpu_control_list_jsons.h" | 10 #include "gpu/config/gpu_control_list_jsons.h" |
| (...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 240 ] | 240 ] |
| 241 }, | 241 }, |
| 242 { | 242 { |
| 243 "id": 24, | 243 "id": 24, |
| 244 "description": "Accelerated 2d canvas is unstable in Linux at the moment", | 244 "description": "Accelerated 2d canvas is unstable in Linux at the moment", |
| 245 "os": { | 245 "os": { |
| 246 "type": "linux" | 246 "type": "linux" |
| 247 }, | 247 }, |
| 248 "features": [ | 248 "features": [ |
| 249 "accelerated_2d_canvas" | 249 "accelerated_2d_canvas" |
| 250 ], |
| 251 "exceptions": [ |
| 252 { |
| 253 "vendor_string": "Vivante", |
| 254 "device_string": "GC1000" |
| 255 } |
| 250 ] | 256 ] |
| 251 }, | 257 }, |
| 252 { | 258 { |
| 253 "id": 27, | 259 "id": 27, |
| 254 "description": "ATI/AMD cards with older drivers in Linux are crash-prone"
, | 260 "description": "ATI/AMD cards with older drivers in Linux are crash-prone"
, |
| 255 "cr_bugs": [95934, 94973, 136240, 357314], | 261 "cr_bugs": [95934, 94973, 136240, 357314], |
| 256 "os": { | 262 "os": { |
| 257 "type": "linux" | 263 "type": "linux" |
| 258 }, | 264 }, |
| 259 "gl_vendor": "ATI.*", | 265 "gl_vendor": "ATI.*", |
| (...skipping 901 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1161 "accelerated_2d_canvas", | 1167 "accelerated_2d_canvas", |
| 1162 "gpu_rasterization" | 1168 "gpu_rasterization" |
| 1163 ] | 1169 ] |
| 1164 } | 1170 } |
| 1165 ] | 1171 ] |
| 1166 } | 1172 } |
| 1167 | 1173 |
| 1168 ); // LONG_STRING_CONST macro | 1174 ); // LONG_STRING_CONST macro |
| 1169 | 1175 |
| 1170 } // namespace gpu | 1176 } // namespace gpu |
| OLD | NEW |