| 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 "gpu/config/gpu_feature_type.h" | 7 #include "gpu/config/gpu_feature_type.h" |
| 8 | 8 |
| 9 namespace gpu { | 9 namespace gpu { |
| 10 | 10 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 list->AddSupportedFeature("flash_3d", | 29 list->AddSupportedFeature("flash_3d", |
| 30 GPU_FEATURE_TYPE_FLASH3D); | 30 GPU_FEATURE_TYPE_FLASH3D); |
| 31 list->AddSupportedFeature("flash_stage3d", | 31 list->AddSupportedFeature("flash_stage3d", |
| 32 GPU_FEATURE_TYPE_FLASH_STAGE3D); | 32 GPU_FEATURE_TYPE_FLASH_STAGE3D); |
| 33 list->AddSupportedFeature("flash_stage3d_baseline", | 33 list->AddSupportedFeature("flash_stage3d_baseline", |
| 34 GPU_FEATURE_TYPE_FLASH_STAGE3D_BASELINE); | 34 GPU_FEATURE_TYPE_FLASH_STAGE3D_BASELINE); |
| 35 list->AddSupportedFeature("texture_sharing", | 35 list->AddSupportedFeature("texture_sharing", |
| 36 GPU_FEATURE_TYPE_TEXTURE_SHARING); | 36 GPU_FEATURE_TYPE_TEXTURE_SHARING); |
| 37 list->AddSupportedFeature("accelerated_video_decode", | 37 list->AddSupportedFeature("accelerated_video_decode", |
| 38 GPU_FEATURE_TYPE_ACCELERATED_VIDEO_DECODE); | 38 GPU_FEATURE_TYPE_ACCELERATED_VIDEO_DECODE); |
| 39 list->AddSupportedFeature("accelerated_video_encode", |
| 40 GPU_FEATURE_TYPE_ACCELERATED_VIDEO_ENCODE); |
| 39 list->AddSupportedFeature("3d_css", | 41 list->AddSupportedFeature("3d_css", |
| 40 GPU_FEATURE_TYPE_3D_CSS); | 42 GPU_FEATURE_TYPE_3D_CSS); |
| 41 list->AddSupportedFeature("accelerated_video", | 43 list->AddSupportedFeature("accelerated_video", |
| 42 GPU_FEATURE_TYPE_ACCELERATED_VIDEO); | 44 GPU_FEATURE_TYPE_ACCELERATED_VIDEO); |
| 43 list->AddSupportedFeature("panel_fitting", | 45 list->AddSupportedFeature("panel_fitting", |
| 44 GPU_FEATURE_TYPE_PANEL_FITTING); | 46 GPU_FEATURE_TYPE_PANEL_FITTING); |
| 45 list->AddSupportedFeature("force_compositing_mode", | 47 list->AddSupportedFeature("force_compositing_mode", |
| 46 GPU_FEATURE_TYPE_FORCE_COMPOSITING_MODE); | 48 GPU_FEATURE_TYPE_FORCE_COMPOSITING_MODE); |
| 47 list->set_supports_feature_type_all(true); | 49 list->set_supports_feature_type_all(true); |
| 48 return list; | 50 return list; |
| 49 } | 51 } |
| 50 | 52 |
| 51 } // namespace gpu | 53 } // namespace gpu |
| OLD | NEW |