| 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 #include "gpu/config/gpu_blacklist.h" | 5 #include "gpu/config/gpu_blacklist.h" |
| 6 | 6 |
| 7 #include <memory> | 7 #include <memory> |
| 8 | 8 |
| 9 #include "gpu/config/gpu_control_list_jsons.h" | 9 #include "gpu/config/gpu_control_list_jsons.h" |
| 10 #include "gpu/config/gpu_feature_type.h" | 10 #include "gpu/config/gpu_feature_type.h" |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 GPU_FEATURE_TYPE_ACCELERATED_VIDEO_ENCODE) | 126 GPU_FEATURE_TYPE_ACCELERATED_VIDEO_ENCODE) |
| 127 | 127 |
| 128 GPU_BLACKLIST_FEATURE_TEST(PanelFitting, | 128 GPU_BLACKLIST_FEATURE_TEST(PanelFitting, |
| 129 "panel_fitting", | 129 "panel_fitting", |
| 130 GPU_FEATURE_TYPE_PANEL_FITTING) | 130 GPU_FEATURE_TYPE_PANEL_FITTING) |
| 131 | 131 |
| 132 GPU_BLACKLIST_FEATURE_TEST(GpuRasterization, | 132 GPU_BLACKLIST_FEATURE_TEST(GpuRasterization, |
| 133 "gpu_rasterization", | 133 "gpu_rasterization", |
| 134 GPU_FEATURE_TYPE_GPU_RASTERIZATION) | 134 GPU_FEATURE_TYPE_GPU_RASTERIZATION) |
| 135 | 135 |
| 136 GPU_BLACKLIST_FEATURE_TEST(AcceleratedVpxDecode, | |
| 137 "accelerated_vpx_decode", | |
| 138 GPU_FEATURE_TYPE_ACCELERATED_VPX_DECODE) | |
| 139 | |
| 140 GPU_BLACKLIST_FEATURE_TEST(WebGL2, | 136 GPU_BLACKLIST_FEATURE_TEST(WebGL2, |
| 141 "webgl2", | 137 "webgl2", |
| 142 GPU_FEATURE_TYPE_WEBGL2) | 138 GPU_FEATURE_TYPE_WEBGL2) |
| 143 | 139 |
| 144 } // namespace gpu | 140 } // namespace gpu |
| OLD | NEW |