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

Unified Diff: cc/trees/layer_tree_host.h

Issue 251343002: Remove offscreen compositor contexts. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rm-offscreencontext: include Created 6 years, 8 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/test/pixel_test.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 508a7281ee9a7acdd2b5c3c2f1dc3f97a36c0fbf..17dacc82b8e6cfa488bbf04261f71807956a0051 100644
--- a/cc/trees/layer_tree_host.h
+++ b/cc/trees/layer_tree_host.h
@@ -65,7 +65,6 @@ struct ScrollAndScaleSet;
struct CC_EXPORT RendererCapabilities {
RendererCapabilities(ResourceFormat best_texture_format,
bool allow_partial_texture_updates,
- bool using_offscreen_context3d,
int max_texture_size,
bool using_shared_memory_resources);
@@ -75,7 +74,6 @@ struct CC_EXPORT RendererCapabilities {
// Duplicate any modification to this list to RendererCapabilitiesImpl.
ResourceFormat best_texture_format;
bool allow_partial_texture_updates;
- bool using_offscreen_context3d;
int max_texture_size;
bool using_shared_memory_resources;
};
@@ -98,11 +96,6 @@ class CC_EXPORT LayerTreeHost {
void SetLayerTreeHostClientReady();
- void set_needs_filter_context() { needs_filter_context_ = true; }
- bool needs_offscreen_context() const {
- return needs_filter_context_;
- }
-
// LayerTreeHost interface to Proxy.
void WillBeginMainFrame() {
client_->WillBeginMainFrame(source_frame_number_);
@@ -366,7 +359,6 @@ class CC_EXPORT LayerTreeHost {
bool animating_;
bool needs_full_tree_sync_;
- bool needs_filter_context_;
base::CancelableClosure prepaint_callback_;
« no previous file with comments | « cc/test/pixel_test.cc ('k') | cc/trees/layer_tree_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698