Chromium Code Reviews| 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 715 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 726 } | 726 } |
| 727 ], | 727 ], |
| 728 "features": [ | 728 "features": [ |
| 729 "all" | 729 "all" |
| 730 ] | 730 ] |
| 731 }, | 731 }, |
| 732 ) // String split to avoid MSVC char limit. | 732 ) // String split to avoid MSVC char limit. |
| 733 LONG_STRING_CONST( | 733 LONG_STRING_CONST( |
| 734 { | 734 { |
| 735 "id": 76, | 735 "id": 76, |
| 736 "description": "WebGL is disabled on Android unless GPU reset notification is supported", | 736 "description": "WebGL is disabled on Android unless the GPU runs in a sepa rate process or GPU reset notifications are supported", |
|
aelias_OOO_until_Jul13
2015/07/23 18:35:48
This description is out of date now.
| |
| 737 "os": { | 737 "os": { |
| 738 "type": "android" | 738 "type": "android" |
| 739 }, | 739 }, |
| 740 "exceptions": [ | 740 "in_process_gpu": true, |
| 741 { | |
| 742 "gl_reset_notification_strategy": { | |
| 743 "op": "=", | |
| 744 "value": "33362" | |
| 745 } | |
| 746 }, | |
| 747 { | |
| 748 "gl_renderer": "Mali-400.*", | |
| 749 "gl_extensions": ".*EXT_robustness.*" | |
| 750 } | |
| 751 ], | |
| 752 "features": [ | 741 "features": [ |
| 753 "webgl" | 742 "webgl" |
| 754 ] | 743 ] |
| 755 }, | 744 }, |
| 756 { | 745 { |
| 757 "id": 78, | 746 "id": 78, |
| 758 "description": "Accelerated video decode interferes with GPU sandbox on ol der Intel drivers", | 747 "description": "Accelerated video decode interferes with GPU sandbox on ol der Intel drivers", |
| 759 "cr_bugs": [180695, 298968, 436968], | 748 "cr_bugs": [180695, 298968, 436968], |
| 760 "os": { | 749 "os": { |
| 761 "type": "win" | 750 "type": "win" |
| (...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1148 "accelerated_2d_canvas", | 1137 "accelerated_2d_canvas", |
| 1149 "gpu_rasterization" | 1138 "gpu_rasterization" |
| 1150 ] | 1139 ] |
| 1151 } | 1140 } |
| 1152 ] | 1141 ] |
| 1153 } | 1142 } |
| 1154 | 1143 |
| 1155 ); // LONG_STRING_CONST macro | 1144 ); // LONG_STRING_CONST macro |
| 1156 | 1145 |
| 1157 } // namespace gpu | 1146 } // namespace gpu |
| OLD | NEW |