Chromium Code Reviews| 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 |
| 11 GpuBlacklist::GpuBlacklist() | 11 GpuBlacklist::GpuBlacklist() |
| 12 : GpuControlList() { | 12 : GpuControlList() { |
| 13 } | 13 } |
| 14 | 14 |
| 15 GpuBlacklist::~GpuBlacklist() { | 15 GpuBlacklist::~GpuBlacklist() { |
| 16 } | 16 } |
| 17 | 17 |
| 18 // static | 18 // static |
| 19 GpuBlacklist* GpuBlacklist::Create() { | 19 GpuBlacklist* GpuBlacklist::Create() { |
| 20 GpuBlacklist* list = new GpuBlacklist(); | 20 GpuBlacklist* list = new GpuBlacklist(); |
| 21 list->AddSupportedFeature("accelerated_2d_canvas", | 21 list->AddSupportedFeature("accelerated_2d_canvas", |
| 22 GPU_FEATURE_TYPE_ACCELERATED_2D_CANVAS); | 22 GPU_FEATURE_TYPE_ACCELERATED_2D_CANVAS); |
| 23 list->AddSupportedFeature("gpu_compositing", | 23 list->AddSupportedFeature("gpu_compositing", |
| 24 GPU_FEATURE_TYPE_GPU_COMPOSITING); | 24 GPU_FEATURE_TYPE_GPU_COMPOSITING); |
| 25 list->AddSupportedFeature("webgl", | 25 list->AddSupportedFeature("webgl", GPU_FEATURE_TYPE_ACCELERATED_WEBGL); |
|
piman
2017/03/10 20:31:40
We should rename the feature name (as well as in t
sugoi1
2017/03/10 20:42:38
Ok, I had started doing that, but this is used as
| |
| 26 GPU_FEATURE_TYPE_WEBGL); | |
| 27 list->AddSupportedFeature("flash_3d", | 26 list->AddSupportedFeature("flash_3d", |
| 28 GPU_FEATURE_TYPE_FLASH3D); | 27 GPU_FEATURE_TYPE_FLASH3D); |
| 29 list->AddSupportedFeature("flash_stage3d", | 28 list->AddSupportedFeature("flash_stage3d", |
| 30 GPU_FEATURE_TYPE_FLASH_STAGE3D); | 29 GPU_FEATURE_TYPE_FLASH_STAGE3D); |
| 31 list->AddSupportedFeature("flash_stage3d_baseline", | 30 list->AddSupportedFeature("flash_stage3d_baseline", |
| 32 GPU_FEATURE_TYPE_FLASH_STAGE3D_BASELINE); | 31 GPU_FEATURE_TYPE_FLASH_STAGE3D_BASELINE); |
| 33 list->AddSupportedFeature("accelerated_video_decode", | 32 list->AddSupportedFeature("accelerated_video_decode", |
| 34 GPU_FEATURE_TYPE_ACCELERATED_VIDEO_DECODE); | 33 GPU_FEATURE_TYPE_ACCELERATED_VIDEO_DECODE); |
| 35 list->AddSupportedFeature("accelerated_video_encode", | 34 list->AddSupportedFeature("accelerated_video_encode", |
| 36 GPU_FEATURE_TYPE_ACCELERATED_VIDEO_ENCODE); | 35 GPU_FEATURE_TYPE_ACCELERATED_VIDEO_ENCODE); |
| 37 list->AddSupportedFeature("panel_fitting", | 36 list->AddSupportedFeature("panel_fitting", |
| 38 GPU_FEATURE_TYPE_PANEL_FITTING); | 37 GPU_FEATURE_TYPE_PANEL_FITTING); |
| 39 list->AddSupportedFeature("gpu_rasterization", | 38 list->AddSupportedFeature("gpu_rasterization", |
| 40 GPU_FEATURE_TYPE_GPU_RASTERIZATION); | 39 GPU_FEATURE_TYPE_GPU_RASTERIZATION); |
| 41 list->AddSupportedFeature("accelerated_vpx_decode", | 40 list->AddSupportedFeature("accelerated_vpx_decode", |
| 42 GPU_FEATURE_TYPE_ACCELERATED_VPX_DECODE); | 41 GPU_FEATURE_TYPE_ACCELERATED_VPX_DECODE); |
| 43 list->AddSupportedFeature("webgl2", | 42 list->AddSupportedFeature("webgl2", GPU_FEATURE_TYPE_ACCELERATED_WEBGL2); |
| 44 GPU_FEATURE_TYPE_WEBGL2); | |
| 45 list->set_supports_feature_type_all(true); | 43 list->set_supports_feature_type_all(true); |
| 46 return list; | 44 return list; |
| 47 } | 45 } |
| 48 | 46 |
| 49 } // namespace gpu | 47 } // namespace gpu |
| OLD | NEW |