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

Unified Diff: cc/trees/layer_tree_settings.cc

Issue 1800923002: cc: Directly use property trees to calculate clip rect (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add setting to only calculate and verify in cc_unittest Created 4 years, 9 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_settings.cc
diff --git a/cc/trees/layer_tree_settings.cc b/cc/trees/layer_tree_settings.cc
index cb4d42718e5b7d8790a42cd9a9789e6e54de3e59..aff419def7cfce6d0cdfdc59839fc4872fd4839f 100644
--- a/cc/trees/layer_tree_settings.cc
+++ b/cc/trees/layer_tree_settings.cc
@@ -97,6 +97,7 @@ LayerTreeSettings::LayerTreeSettings()
ignore_root_layer_flings(false),
scheduled_raster_task_limit(32),
use_occlusion_for_tile_prioritization(false),
+ verify_clip_tree_calculations(false),
image_decode_tasks_enabled(false),
wait_for_beginframe_interval(true),
abort_commit_before_output_surface_creation(true),
@@ -164,6 +165,7 @@ bool LayerTreeSettings::operator==(const LayerTreeSettings& other) const {
scheduled_raster_task_limit == other.scheduled_raster_task_limit &&
use_occlusion_for_tile_prioritization ==
other.use_occlusion_for_tile_prioritization &&
+ verify_clip_tree_calculations == other.verify_clip_tree_calculations &&
image_decode_tasks_enabled == other.image_decode_tasks_enabled &&
wait_for_beginframe_interval == other.wait_for_beginframe_interval &&
use_mouse_wheel_gestures == other.use_mouse_wheel_gestures &&

Powered by Google App Engine
This is Rietveld 408576698