| 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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 GPU_FEATURE_TYPE_FLASH_STAGE3D_BASELINE) | 116 GPU_FEATURE_TYPE_FLASH_STAGE3D_BASELINE) |
| 117 | 117 |
| 118 GPU_BLACKLIST_FEATURE_TEST(TextureSharing, | 118 GPU_BLACKLIST_FEATURE_TEST(TextureSharing, |
| 119 "texture_sharing", | 119 "texture_sharing", |
| 120 GPU_FEATURE_TYPE_TEXTURE_SHARING) | 120 GPU_FEATURE_TYPE_TEXTURE_SHARING) |
| 121 | 121 |
| 122 GPU_BLACKLIST_FEATURE_TEST(AcceleratedVideoDecode, | 122 GPU_BLACKLIST_FEATURE_TEST(AcceleratedVideoDecode, |
| 123 "accelerated_video_decode", | 123 "accelerated_video_decode", |
| 124 GPU_FEATURE_TYPE_ACCELERATED_VIDEO_DECODE) | 124 GPU_FEATURE_TYPE_ACCELERATED_VIDEO_DECODE) |
| 125 | 125 |
| 126 GPU_BLACKLIST_FEATURE_TEST(AcceleratedVideoEncode, |
| 127 "accelerated_video_encode", |
| 128 GPU_FEATURE_TYPE_ACCELERATED_VIDEO_ENCODE) |
| 129 |
| 126 GPU_BLACKLIST_FEATURE_TEST(Css3D, | 130 GPU_BLACKLIST_FEATURE_TEST(Css3D, |
| 127 "3d_css", | 131 "3d_css", |
| 128 GPU_FEATURE_TYPE_3D_CSS) | 132 GPU_FEATURE_TYPE_3D_CSS) |
| 129 | 133 |
| 130 GPU_BLACKLIST_FEATURE_TEST(AcceleratedVideo, | 134 GPU_BLACKLIST_FEATURE_TEST(AcceleratedVideo, |
| 131 "accelerated_video", | 135 "accelerated_video", |
| 132 GPU_FEATURE_TYPE_ACCELERATED_VIDEO) | 136 GPU_FEATURE_TYPE_ACCELERATED_VIDEO) |
| 133 | 137 |
| 134 GPU_BLACKLIST_FEATURE_TEST(PanelFitting, | 138 GPU_BLACKLIST_FEATURE_TEST(PanelFitting, |
| 135 "panel_fitting", | 139 "panel_fitting", |
| 136 GPU_FEATURE_TYPE_PANEL_FITTING) | 140 GPU_FEATURE_TYPE_PANEL_FITTING) |
| 137 | 141 |
| 138 GPU_BLACKLIST_FEATURE_TEST(ForceCompositingMode, | 142 GPU_BLACKLIST_FEATURE_TEST(ForceCompositingMode, |
| 139 "force_compositing_mode", | 143 "force_compositing_mode", |
| 140 GPU_FEATURE_TYPE_FORCE_COMPOSITING_MODE) | 144 GPU_FEATURE_TYPE_FORCE_COMPOSITING_MODE) |
| 141 | 145 |
| 142 } // namespace gpu | 146 } // namespace gpu |
| OLD | NEW |