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", |
| 737 "os": { | 737 "os": { |
| 738 "type": "android" | 738 "type": "android" |
| 739 }, | 739 }, |
| 740 "exceptions": [ | 740 "exceptions": [ |
|
aelias_OOO_until_Jul13
2015/07/23 00:03:28
"exceptions"-based rules are confusing, and I don'
| |
| 741 { | 741 { |
| 742 "in_process_gpu": false | |
| 743 }, | |
| 744 { | |
| 742 "gl_reset_notification_strategy": { | 745 "gl_reset_notification_strategy": { |
| 743 "op": "=", | 746 "op": "=", |
| 744 "value": "33362" | 747 "value": "33362" |
| 745 } | 748 } |
| 746 }, | 749 }, |
| 747 { | 750 { |
| 748 "gl_renderer": "Mali-400.*", | 751 "gl_renderer": "Mali-400.*", |
| 749 "gl_extensions": ".*EXT_robustness.*" | 752 "gl_extensions": ".*EXT_robustness.*" |
| 750 } | 753 } |
| 751 ], | 754 ], |
| (...skipping 396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1148 "accelerated_2d_canvas", | 1151 "accelerated_2d_canvas", |
| 1149 "gpu_rasterization" | 1152 "gpu_rasterization" |
| 1150 ] | 1153 ] |
| 1151 } | 1154 } |
| 1152 ] | 1155 ] |
| 1153 } | 1156 } |
| 1154 | 1157 |
| 1155 ); // LONG_STRING_CONST macro | 1158 ); // LONG_STRING_CONST macro |
| 1156 | 1159 |
| 1157 } // namespace gpu | 1160 } // namespace gpu |
| OLD | NEW |