| 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 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 GPU_FEATURE_TYPE_GPU_RASTERIZATION) | 134 GPU_FEATURE_TYPE_GPU_RASTERIZATION) |
| 135 | 135 |
| 136 GPU_BLACKLIST_FEATURE_TEST(AcceleratedVpxDecode, | 136 GPU_BLACKLIST_FEATURE_TEST(AcceleratedVpxDecode, |
| 137 "accelerated_vpx_decode", | 137 "accelerated_vpx_decode", |
| 138 GPU_FEATURE_TYPE_ACCELERATED_VPX_DECODE) | 138 GPU_FEATURE_TYPE_ACCELERATED_VPX_DECODE) |
| 139 | 139 |
| 140 GPU_BLACKLIST_FEATURE_TEST(WebGL2, | 140 GPU_BLACKLIST_FEATURE_TEST(WebGL2, |
| 141 "webgl2", | 141 "webgl2", |
| 142 GPU_FEATURE_TYPE_WEBGL2) | 142 GPU_FEATURE_TYPE_WEBGL2) |
| 143 | 143 |
| 144 GPU_BLACKLIST_FEATURE_TEST(SwiftShader, |
| 145 "swiftshader", |
| 146 GPU_FEATURE_TYPE_SWIFTSHADER) |
| 147 |
| 144 } // namespace gpu | 148 } // namespace gpu |
| OLD | NEW |