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 #include "gpu/config/gpu_feature_type.h" | 6 #include "gpu/config/gpu_feature_type.h" |
7 #include "gpu/config/gpu_info.h" | 7 #include "gpu/config/gpu_info.h" |
8 #include "testing/gtest/include/gtest/gtest.h" | 8 #include "testing/gtest/include/gtest/gtest.h" |
9 | 9 |
10 namespace gpu { | 10 namespace gpu { |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 | 97 |
98 GPU_BLACKLIST_FEATURE_TEST(AcceleratedVideoEncode, | 98 GPU_BLACKLIST_FEATURE_TEST(AcceleratedVideoEncode, |
99 GPU_FEATURE_TYPE_ACCELERATED_VIDEO_ENCODE) | 99 GPU_FEATURE_TYPE_ACCELERATED_VIDEO_ENCODE) |
100 | 100 |
101 GPU_BLACKLIST_FEATURE_TEST(PanelFitting, | 101 GPU_BLACKLIST_FEATURE_TEST(PanelFitting, |
102 GPU_FEATURE_TYPE_PANEL_FITTING) | 102 GPU_FEATURE_TYPE_PANEL_FITTING) |
103 | 103 |
104 GPU_BLACKLIST_FEATURE_TEST(GpuRasterization, | 104 GPU_BLACKLIST_FEATURE_TEST(GpuRasterization, |
105 GPU_FEATURE_TYPE_GPU_RASTERIZATION) | 105 GPU_FEATURE_TYPE_GPU_RASTERIZATION) |
106 | 106 |
107 GPU_BLACKLIST_FEATURE_TEST(AcceleratedVpxDecode, | |
108 GPU_FEATURE_TYPE_ACCELERATED_VPX_DECODE) | |
109 | |
110 GPU_BLACKLIST_FEATURE_TEST(WebGL2, | 107 GPU_BLACKLIST_FEATURE_TEST(WebGL2, |
111 GPU_FEATURE_TYPE_WEBGL2) | 108 GPU_FEATURE_TYPE_WEBGL2) |
112 | 109 |
113 } // namespace gpu | 110 } // namespace gpu |
OLD | NEW |