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

Unified Diff: cc/trees/layer_tree_host.h

Issue 157743007: cc: Prevent usage of rasterize on-demand with delegating renderer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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
Index: cc/trees/layer_tree_host.h
diff --git a/cc/trees/layer_tree_host.h b/cc/trees/layer_tree_host.h
index 1a2a65b4a62396a1788351b5ba1591624aab103f..cd0b9aa7b030e3e6dcabd64240008eedeaa84093 100644
--- a/cc/trees/layer_tree_host.h
+++ b/cc/trees/layer_tree_host.h
@@ -68,7 +68,8 @@ struct CC_EXPORT RendererCapabilities {
bool allow_partial_texture_updates,
bool using_offscreen_context3d,
int max_texture_size,
- bool using_shared_memory_resources);
+ bool using_shared_memory_resources,
+ bool allow_rasterize_on_demand);
RendererCapabilities();
~RendererCapabilities();
@@ -79,6 +80,7 @@ struct CC_EXPORT RendererCapabilities {
bool using_offscreen_context3d;
int max_texture_size;
bool using_shared_memory_resources;
+ bool allow_rasterize_on_demand;
danakj 2014/02/10 16:39:43 Does the main thread need to know about this? I do
reveman 2014/02/10 17:16:14 Correct. Fixed in latest patch.
};
class CC_EXPORT LayerTreeHost {

Powered by Google App Engine
This is Rietveld 408576698