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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 GPU_FEATURE_TYPE_ACCELERATED_VIDEO_ENCODE) | 119 GPU_FEATURE_TYPE_ACCELERATED_VIDEO_ENCODE) |
120 | 120 |
121 GPU_BLACKLIST_FEATURE_TEST(PanelFitting, | 121 GPU_BLACKLIST_FEATURE_TEST(PanelFitting, |
122 "panel_fitting", | 122 "panel_fitting", |
123 GPU_FEATURE_TYPE_PANEL_FITTING) | 123 GPU_FEATURE_TYPE_PANEL_FITTING) |
124 | 124 |
125 GPU_BLACKLIST_FEATURE_TEST(GpuRasterization, | 125 GPU_BLACKLIST_FEATURE_TEST(GpuRasterization, |
126 "gpu_rasterization", | 126 "gpu_rasterization", |
127 GPU_FEATURE_TYPE_GPU_RASTERIZATION) | 127 GPU_FEATURE_TYPE_GPU_RASTERIZATION) |
128 | 128 |
| 129 GPU_BLACKLIST_FEATURE_TEST(AcceleratedVpxDecode, |
| 130 "accelerated_vpx_decode", |
| 131 GPU_FEATURE_TYPE_ACCELERATED_VPX_DECODE) |
| 132 |
129 } // namespace gpu | 133 } // namespace gpu |
OLD | NEW |