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

Unified Diff: cc/trees/layer_tree_impl.cc

Issue 2127323002: cc: Use sublayer scale from effect tree (1) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: PAC Created 4 years, 5 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_impl.cc
diff --git a/cc/trees/layer_tree_impl.cc b/cc/trees/layer_tree_impl.cc
index d0e1b738b4850c4b27029c3803c7ea63f8e102b0..19985b295a12970f41fde7e8adead4886fbd99cb 100644
--- a/cc/trees/layer_tree_impl.cc
+++ b/cc/trees/layer_tree_impl.cc
@@ -1669,7 +1669,7 @@ static bool PointIsClippedByAncestorClipNode(
clip_node->id > 1; clip_node = clip_tree.parent(clip_node)) {
if (clip_node->data.applies_local_clip) {
const TransformNode* transform_node =
- transform_tree.Node(clip_node->data.target_id);
+ transform_tree.Node(clip_node->data.target_transform_id);
gfx::Rect combined_clip_in_target_space =
gfx::ToEnclosingRect(clip_node->data.combined_clip_in_target_space);

Powered by Google App Engine
This is Rietveld 408576698