Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(13)

Side by Side Diff: gpu/config/gpu_blacklist.cc

Issue 496503002: Delete obsolete GPU rasterization content whitelist code (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/renderer/render_view_impl.cc ('k') | gpu/config/gpu_blacklist_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 20 matching lines...) Expand all
31 list->AddSupportedFeature("flash_stage3d_baseline", 31 list->AddSupportedFeature("flash_stage3d_baseline",
32 GPU_FEATURE_TYPE_FLASH_STAGE3D_BASELINE); 32 GPU_FEATURE_TYPE_FLASH_STAGE3D_BASELINE);
33 list->AddSupportedFeature("accelerated_video_decode", 33 list->AddSupportedFeature("accelerated_video_decode",
34 GPU_FEATURE_TYPE_ACCELERATED_VIDEO_DECODE); 34 GPU_FEATURE_TYPE_ACCELERATED_VIDEO_DECODE);
35 list->AddSupportedFeature("accelerated_video_encode", 35 list->AddSupportedFeature("accelerated_video_encode",
36 GPU_FEATURE_TYPE_ACCELERATED_VIDEO_ENCODE); 36 GPU_FEATURE_TYPE_ACCELERATED_VIDEO_ENCODE);
37 list->AddSupportedFeature("panel_fitting", 37 list->AddSupportedFeature("panel_fitting",
38 GPU_FEATURE_TYPE_PANEL_FITTING); 38 GPU_FEATURE_TYPE_PANEL_FITTING);
39 list->AddSupportedFeature("gpu_rasterization", 39 list->AddSupportedFeature("gpu_rasterization",
40 GPU_FEATURE_TYPE_GPU_RASTERIZATION); 40 GPU_FEATURE_TYPE_GPU_RASTERIZATION);
41 list->AddSupportedFeature(
42 "gpu_rasterization_expanded_heuristics",
43 GPU_FEATURE_TYPE_GPU_RASTERIZATION_EXPANDED_HEURISTICS);
44 list->set_supports_feature_type_all(true); 41 list->set_supports_feature_type_all(true);
45 return list; 42 return list;
46 } 43 }
47 44
48 } // namespace gpu 45 } // namespace gpu
OLDNEW
« no previous file with comments | « content/renderer/render_view_impl.cc ('k') | gpu/config/gpu_blacklist_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698