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

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

Issue 1247093006: 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: Added back in EXT_robustness exceptions 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 GPU reset notification is supported", 736 "description": "WebGL is disabled on Android unless the GPU runs in a sepa rate process",
737 "os": { 737 "os": {
738 "type": "android" 738 "type": "android"
739 }, 739 },
740 "in_process_gpu": true,
740 "exceptions": [ 741 "exceptions": [
741 { 742 {
742 "gl_reset_notification_strategy": { 743 "gl_reset_notification_strategy": {
743 "op": "=", 744 "op": "=",
744 "value": "33362" 745 "value": "33362"
745 } 746 }
746 }, 747 },
747 { 748 {
748 "gl_renderer": "Mali-400.*", 749 "gl_renderer": "Mali-400.*",
749 "gl_extensions": ".*EXT_robustness.*" 750 "gl_extensions": ".*EXT_robustness.*"
(...skipping 398 matching lines...) Expand 10 before | Expand all | Expand 10 after
1148 "accelerated_2d_canvas", 1149 "accelerated_2d_canvas",
1149 "gpu_rasterization" 1150 "gpu_rasterization"
1150 ] 1151 ]
1151 } 1152 }
1152 ] 1153 ]
1153 } 1154 }
1154 1155
1155 ); // LONG_STRING_CONST macro 1156 ); // LONG_STRING_CONST macro
1156 1157
1157 } // namespace gpu 1158 } // 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