| 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 995 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1006 { | 1006 { |
| 1007 "os": { | 1007 "os": { |
| 1008 "type": "android" | 1008 "type": "android" |
| 1009 }, | 1009 }, |
| 1010 "gl_renderer": "Adreno \\(TM\\) 3.*" | 1010 "gl_renderer": "Adreno \\(TM\\) 3.*" |
| 1011 }, | 1011 }, |
| 1012 { | 1012 { |
| 1013 "os": { | 1013 "os": { |
| 1014 "type": "android" | 1014 "type": "android" |
| 1015 }, | 1015 }, |
| 1016 "gl_renderer": "Mali-400.*" |
| 1017 }, |
| 1018 { |
| 1019 "os": { |
| 1020 "type": "android" |
| 1021 }, |
| 1016 "gl_renderer": "NVIDIA.*" | 1022 "gl_renderer": "NVIDIA.*" |
| 1017 }, | 1023 }, |
| 1018 { | 1024 { |
| 1019 "os": { | 1025 "os": { |
| 1020 "type": "android" | 1026 "type": "android" |
| 1021 }, | 1027 }, |
| 1022 "gl_renderer": "VideoCore IV.*" | 1028 "gl_renderer": "VideoCore IV.*" |
| 1023 }, | 1029 }, |
| 1024 { | 1030 { |
| 1025 "os": { | 1031 "os": { |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1143 "description": "GPU raster broken on PowerVR SGX even on Lollipop", | 1149 "description": "GPU raster broken on PowerVR SGX even on Lollipop", |
| 1144 "cr_bugs": [461456], | 1150 "cr_bugs": [461456], |
| 1145 "os": { | 1151 "os": { |
| 1146 "type": "android" | 1152 "type": "android" |
| 1147 }, | 1153 }, |
| 1148 "gl_renderer": "PowerVR SGX.*", | 1154 "gl_renderer": "PowerVR SGX.*", |
| 1149 "features": [ | 1155 "features": [ |
| 1150 "accelerated_2d_canvas", | 1156 "accelerated_2d_canvas", |
| 1151 "gpu_rasterization" | 1157 "gpu_rasterization" |
| 1152 ] | 1158 ] |
| 1159 }, |
| 1160 { |
| 1161 "id": 106, |
| 1162 "description": "Canvas and GPU raster broken on particular Mali-400 models
", |
| 1163 "cr_bugs": [451230], |
| 1164 "os": { |
| 1165 "type": "android" |
| 1166 }, |
| 1167 "gl_renderer": "Mali-400.*", |
| 1168 "machine_model_name": [ "GT-I8190N", "GT-I9300", "SPH-L900", "SM-G800F" ], |
| 1169 "features": [ |
| 1170 "accelerated_2d_canvas", |
| 1171 "gpu_rasterization" |
| 1172 ] |
| 1153 } | 1173 } |
| 1154 ] | 1174 ] |
| 1155 } | 1175 } |
| 1156 | 1176 |
| 1157 ); // LONG_STRING_CONST macro | 1177 ); // LONG_STRING_CONST macro |
| 1158 | 1178 |
| 1159 } // namespace gpu | 1179 } // namespace gpu |
| OLD | NEW |