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 466 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
477 "driver_vendor": "NVIDIA", | 477 "driver_vendor": "NVIDIA", |
478 "driver_version": { | 478 "driver_version": { |
479 "op": "<", | 479 "op": "<", |
480 "value": "295" | 480 "value": "295" |
481 }, | 481 }, |
482 "features": [ | 482 "features": [ |
483 "all" | 483 "all" |
484 ] | 484 ] |
485 }, | 485 }, |
486 { | 486 { |
487 "id": 48, | |
488 "description": "Accelerated video decode is unavailable on Linux", | |
489 "cr_bugs": [137247], | |
490 "os": { | |
491 "type": "linux" | |
492 }, | |
493 "features": [ | |
494 "accelerated_video_decode" | |
495 ] | |
496 }, | |
497 { | |
498 "id": 49, | 487 "id": 49, |
499 "description": "NVidia GeForce GT 650M can cause the system to hang with f
lash 3D", | 488 "description": "NVidia GeForce GT 650M can cause the system to hang with f
lash 3D", |
500 "cr_bugs": [140175], | 489 "cr_bugs": [140175], |
501 "os": { | 490 "os": { |
502 "type": "macosx", | 491 "type": "macosx", |
503 "version": { | 492 "version": { |
504 "op": "between", | 493 "op": "between", |
505 "value": "10.8.0", | 494 "value": "10.8.0", |
506 "value2": "10.8.1" | 495 "value2": "10.8.1" |
507 } | 496 } |
(...skipping 704 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1212 "features": [ | 1201 "features": [ |
1213 "accelerated_video_decode" | 1202 "accelerated_video_decode" |
1214 ] | 1203 ] |
1215 } | 1204 } |
1216 ] | 1205 ] |
1217 } | 1206 } |
1218 | 1207 |
1219 ); // LONG_STRING_CONST macro | 1208 ); // LONG_STRING_CONST macro |
1220 | 1209 |
1221 } // namespace gpu | 1210 } // namespace gpu |
OLD | NEW |