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

Unified Diff: cc/trees/layer_tree_host.h

Issue 16069004: cc: Remove legacy accelerated painting path (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix unused variable warning Created 7 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/resources/skpicture_content_layer_updater.cc ('k') | cc/trees/layer_tree_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/trees/layer_tree_host.h
diff --git a/cc/trees/layer_tree_host.h b/cc/trees/layer_tree_host.h
index d0f680167154447a5be5dcb0953ff533ecd2716b..e5dd380a99a78ae3e5c0044c61fa001c06b4f219 100644
--- a/cc/trees/layer_tree_host.h
+++ b/cc/trees/layer_tree_host.h
@@ -73,7 +73,6 @@ struct CC_EXPORT RendererCapabilities {
unsigned best_texture_format;
bool using_partial_swap;
- bool using_accelerated_painting;
bool using_set_visibility;
bool using_swap_complete_callback;
bool using_gpu_memory_manager;
@@ -99,7 +98,7 @@ class CC_EXPORT LayerTreeHost : NON_EXPORTED_BASE(public RateLimiterClient) {
void set_needs_filter_context() { needs_filter_context_ = true; }
bool needs_offscreen_context() const {
- return needs_filter_context_ || settings_.accelerate_painting;
+ return needs_filter_context_;
}
// LayerTreeHost interface to Proxy.
« no previous file with comments | « cc/resources/skpicture_content_layer_updater.cc ('k') | cc/trees/layer_tree_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698