| 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 } | 94 } |
| 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, "webgl", GPU_FEATURE_TYPE_ACCELERATED_WEBGL) |
| 105 "webgl", | |
| 106 GPU_FEATURE_TYPE_WEBGL) | |
| 107 | 105 |
| 108 GPU_BLACKLIST_FEATURE_TEST(Flash3D, | 106 GPU_BLACKLIST_FEATURE_TEST(Flash3D, |
| 109 "flash_3d", | 107 "flash_3d", |
| 110 GPU_FEATURE_TYPE_FLASH3D) | 108 GPU_FEATURE_TYPE_FLASH3D) |
| 111 | 109 |
| 112 GPU_BLACKLIST_FEATURE_TEST(FlashStage3D, | 110 GPU_BLACKLIST_FEATURE_TEST(FlashStage3D, |
| 113 "flash_stage3d", | 111 "flash_stage3d", |
| 114 GPU_FEATURE_TYPE_FLASH_STAGE3D) | 112 GPU_FEATURE_TYPE_FLASH_STAGE3D) |
| 115 | 113 |
| 116 GPU_BLACKLIST_FEATURE_TEST(FlashStage3DBaseline, | 114 GPU_BLACKLIST_FEATURE_TEST(FlashStage3DBaseline, |
| (...skipping 15 matching lines...) Expand all Loading... |
| 132 GPU_BLACKLIST_FEATURE_TEST(GpuRasterization, | 130 GPU_BLACKLIST_FEATURE_TEST(GpuRasterization, |
| 133 "gpu_rasterization", | 131 "gpu_rasterization", |
| 134 GPU_FEATURE_TYPE_GPU_RASTERIZATION) | 132 GPU_FEATURE_TYPE_GPU_RASTERIZATION) |
| 135 | 133 |
| 136 GPU_BLACKLIST_FEATURE_TEST(AcceleratedVpxDecode, | 134 GPU_BLACKLIST_FEATURE_TEST(AcceleratedVpxDecode, |
| 137 "accelerated_vpx_decode", | 135 "accelerated_vpx_decode", |
| 138 GPU_FEATURE_TYPE_ACCELERATED_VPX_DECODE) | 136 GPU_FEATURE_TYPE_ACCELERATED_VPX_DECODE) |
| 139 | 137 |
| 140 GPU_BLACKLIST_FEATURE_TEST(WebGL2, | 138 GPU_BLACKLIST_FEATURE_TEST(WebGL2, |
| 141 "webgl2", | 139 "webgl2", |
| 142 GPU_FEATURE_TYPE_WEBGL2) | 140 GPU_FEATURE_TYPE_ACCELERATED_WEBGL2) |
| 143 | 141 |
| 144 } // namespace gpu | 142 } // namespace gpu |
| OLD | NEW |