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

Unified Diff: cc/layers/append_quads_data.h

Issue 14417014: cc: Add tile-free software compositing mode. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase to 199251 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 | « no previous file | cc/layers/picture_layer_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/layers/append_quads_data.h
diff --git a/cc/layers/append_quads_data.h b/cc/layers/append_quads_data.h
index 1ec8184a17aa225e9b898c47f4e70e0f75304b61..7e2dc68e3c756a9cbe0f3c1a83adced932fecdd0 100644
--- a/cc/layers/append_quads_data.h
+++ b/cc/layers/append_quads_data.h
@@ -12,17 +12,21 @@ namespace cc {
struct AppendQuadsData {
AppendQuadsData()
- : had_occlusion_from_outside_target_surface(false),
+ : allow_tile_draw_quads(true),
+ had_occlusion_from_outside_target_surface(false),
had_incomplete_tile(false),
num_missing_tiles(0),
render_pass_id(0, 0) {}
explicit AppendQuadsData(RenderPass::Id render_pass_id)
- : had_occlusion_from_outside_target_surface(false),
+ : allow_tile_draw_quads(true),
+ had_occlusion_from_outside_target_surface(false),
had_incomplete_tile(false),
num_missing_tiles(0),
render_pass_id(render_pass_id) {}
+ // Set by LayerTreeHostImpl.
+ bool allow_tile_draw_quads;
// Set by the QuadCuller.
bool had_occlusion_from_outside_target_surface;
// Set by the layer appending quads.
« no previous file with comments | « no previous file | cc/layers/picture_layer_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698