Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(259)

Side by Side Diff: gpu/config/software_rendering_list_json.cc

Issue 1252293002: Revert of Allow WebGL on Android if the GPU has it's own process (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « gpu/config/gpu_info_collector.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 the GPU runs in a sepa rate process", 736 "description": "WebGL is disabled on Android unless GPU reset notification is supported",
737 "os": { 737 "os": {
738 "type": "android" 738 "type": "android"
739 }, 739 },
740 "in_process_gpu": true, 740 "exceptions": [
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 ],
741 "features": [ 752 "features": [
742 "webgl" 753 "webgl"
743 ] 754 ]
744 }, 755 },
745 { 756 {
746 "id": 78, 757 "id": 78,
747 "description": "Accelerated video decode interferes with GPU sandbox on ol der Intel drivers", 758 "description": "Accelerated video decode interferes with GPU sandbox on ol der Intel drivers",
748 "cr_bugs": [180695, 298968, 436968], 759 "cr_bugs": [180695, 298968, 436968],
749 "os": { 760 "os": {
750 "type": "win" 761 "type": "win"
(...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after
1137 "accelerated_2d_canvas", 1148 "accelerated_2d_canvas",
1138 "gpu_rasterization" 1149 "gpu_rasterization"
1139 ] 1150 ]
1140 } 1151 }
1141 ] 1152 ]
1142 } 1153 }
1143 1154
1144 ); // LONG_STRING_CONST macro 1155 ); // LONG_STRING_CONST macro
1145 1156
1146 } // namespace gpu 1157 } // namespace gpu
OLDNEW
« no previous file with comments | « gpu/config/gpu_info_collector.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698