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 "base/memory/scoped_ptr.h" | 5 #include "base/memory/scoped_ptr.h" |
6 #include "gpu/config/gpu_blacklist.h" | 6 #include "gpu/config/gpu_blacklist.h" |
7 #include "gpu/config/gpu_control_list_jsons.h" | 7 #include "gpu/config/gpu_control_list_jsons.h" |
8 #include "gpu/config/gpu_feature_type.h" | 8 #include "gpu/config/gpu_feature_type.h" |
9 #include "gpu/config/gpu_info.h" | 9 #include "gpu/config/gpu_info.h" |
10 #include "testing/gtest/include/gtest/gtest.h" | 10 #include "testing/gtest/include/gtest/gtest.h" |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 GPU_FEATURE_TYPE_ACCELERATED_VIDEO_ENCODE) | 121 GPU_FEATURE_TYPE_ACCELERATED_VIDEO_ENCODE) |
122 | 122 |
123 GPU_BLACKLIST_FEATURE_TEST(PanelFitting, | 123 GPU_BLACKLIST_FEATURE_TEST(PanelFitting, |
124 "panel_fitting", | 124 "panel_fitting", |
125 GPU_FEATURE_TYPE_PANEL_FITTING) | 125 GPU_FEATURE_TYPE_PANEL_FITTING) |
126 | 126 |
127 GPU_BLACKLIST_FEATURE_TEST(GpuRasterization, | 127 GPU_BLACKLIST_FEATURE_TEST(GpuRasterization, |
128 "gpu_rasterization", | 128 "gpu_rasterization", |
129 GPU_FEATURE_TYPE_GPU_RASTERIZATION) | 129 GPU_FEATURE_TYPE_GPU_RASTERIZATION) |
130 | 130 |
131 GPU_BLACKLIST_FEATURE_TEST( | |
132 GpuRasterizationExpandedHeuristics, | |
133 "gpu_rasterization_expanded_heuristics", | |
134 GPU_FEATURE_TYPE_GPU_RASTERIZATION_EXPANDED_HEURISTICS) | |
135 | |
136 } // namespace gpu | 131 } // namespace gpu |
OLD | NEW |