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

Unified Diff: cc/trees/layer_tree_settings.h

Issue 2668873002: cc: Add checker-imaging support to TileManager. (Closed)
Patch Set: remove include Created 3 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
« no previous file with comments | « cc/trees/layer_tree_impl.cc ('k') | cc/trees/layer_tree_settings.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/trees/layer_tree_settings.h
diff --git a/cc/trees/layer_tree_settings.h b/cc/trees/layer_tree_settings.h
index 9aecae6ee69395b18c7066c0867b4256a138c628..b583f493cbbba462c2d1c86fa9fd9695793e7001 100644
--- a/cc/trees/layer_tree_settings.h
+++ b/cc/trees/layer_tree_settings.h
@@ -15,6 +15,7 @@
#include "cc/output/managed_memory_policy.h"
#include "cc/output/renderer_settings.h"
#include "cc/scheduler/scheduler_settings.h"
+#include "cc/tiles/tile_manager_settings.h"
#include "third_party/skia/include/core/SkColor.h"
#include "ui/gfx/geometry/size.h"
@@ -29,6 +30,7 @@ class CC_EXPORT LayerTreeSettings {
bool operator==(const LayerTreeSettings& other) const;
SchedulerSettings ToSchedulerSettings() const;
+ TileManagerSettings ToTileManagerSettings() const;
RendererSettings renderer_settings;
bool single_thread_proxy_scheduler = true;
@@ -95,6 +97,11 @@ class CC_EXPORT LayerTreeSettings {
// tiles come before lower priority tiles.
bool check_tile_priority_inversion = false;
+ // If set to true, the compositor may selectively defer image decodes to the
+ // Image Decode Service and raster tiles without images until the decode is
+ // ready.
+ bool enable_checker_imaging = false;
+
LayerTreeDebugState initial_debug_state;
};
« no previous file with comments | « cc/trees/layer_tree_impl.cc ('k') | cc/trees/layer_tree_settings.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698