| 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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 | 95 |
| 96 GPU_BLACKLIST_FEATURE_TEST(Accelerated2DCanvas, | 96 GPU_BLACKLIST_FEATURE_TEST(Accelerated2DCanvas, |
| 97 "accelerated_2d_canvas", | 97 "accelerated_2d_canvas", |
| 98 GPU_FEATURE_TYPE_ACCELERATED_2D_CANVAS) | 98 GPU_FEATURE_TYPE_ACCELERATED_2D_CANVAS) |
| 99 | 99 |
| 100 GPU_BLACKLIST_FEATURE_TEST(GpuCompositing, | 100 GPU_BLACKLIST_FEATURE_TEST(GpuCompositing, |
| 101 "gpu_compositing", | 101 "gpu_compositing", |
| 102 GPU_FEATURE_TYPE_GPU_COMPOSITING) | 102 GPU_FEATURE_TYPE_GPU_COMPOSITING) |
| 103 | 103 |
| 104 GPU_BLACKLIST_FEATURE_TEST(WebGL, | 104 GPU_BLACKLIST_FEATURE_TEST(WebGL, |
| 105 "webgl", | 105 "accelerated_webgl", |
| 106 GPU_FEATURE_TYPE_WEBGL) | 106 GPU_FEATURE_TYPE_ACCELERATED_WEBGL) |
| 107 | 107 |
| 108 GPU_BLACKLIST_FEATURE_TEST(Flash3D, | 108 GPU_BLACKLIST_FEATURE_TEST(Flash3D, |
| 109 "flash_3d", | 109 "flash_3d", |
| 110 GPU_FEATURE_TYPE_FLASH3D) | 110 GPU_FEATURE_TYPE_FLASH3D) |
| 111 | 111 |
| 112 GPU_BLACKLIST_FEATURE_TEST(FlashStage3D, | 112 GPU_BLACKLIST_FEATURE_TEST(FlashStage3D, |
| 113 "flash_stage3d", | 113 "flash_stage3d", |
| 114 GPU_FEATURE_TYPE_FLASH_STAGE3D) | 114 GPU_FEATURE_TYPE_FLASH_STAGE3D) |
| 115 | 115 |
| 116 GPU_BLACKLIST_FEATURE_TEST(FlashStage3DBaseline, | 116 GPU_BLACKLIST_FEATURE_TEST(FlashStage3DBaseline, |
| (...skipping 18 matching lines...) Expand all Loading... |
| 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 } // namespace gpu | 144 } // namespace gpu |
| OLD | NEW |