// Copyright 2016 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "base/trace_event/trace_event_argument.h" #include "cc/base/math_util.h" #include "cc/layers/layer.h" #include "cc/trees/property_tree.h" #include "cc/trees/transform_node.h" #include "ui/gfx/geometry/point3_f.h" namespace cc { TransformNode::TransformNode() : id(TransformTree::kInvalidNodeId), parent_id(TransformTree::kInvalidNodeId), sticky_position_constraint_id(-1), source_node_id(TransformTree::kInvalidNodeId), sorting_context_id(0), needs_local_transform_update(true), node_and_ancestors_are_animated_or_invertible(true), is_invertible(true), ancestors_are_invertible(true), has_potential_animation(false), is_currently_animating(false), to_screen_is_potentially_animated(false), has_only_translation_animations(true), flattens_inherited_transform(false), node_and_ancestors_are_flat(true), node_and_ancestors_have_only_integer_translation(true), scrolls(false), should_be_snapped(false), moved_by_inner_viewport_bounds_delta_x(false), moved_by_inner_viewport_bounds_delta_y(false), moved_by_outer_viewport_bounds_delta_x(false), moved_by_outer_viewport_bounds_delta_y(false), in_subtree_of_page_scale_layer(false), transform_changed(false), post_local_scale_factor(1.0f) {} TransformNode::TransformNode(const TransformNode&) = default; bool TransformNode::operator==(const TransformNode& other) const { return id == other.id && parent_id == other.parent_id && element_id == other.element_id && pre_local == other.pre_local && local == other.local && post_local == other.post_local && to_parent == other.to_parent && source_node_id == other.source_node_id && sorting_context_id == other.sorting_context_id && needs_local_transform_update == other.needs_local_transform_update && node_and_ancestors_are_animated_or_invertible == other.node_and_ancestors_are_animated_or_invertible && is_invertible == other.is_invertible && ancestors_are_invertible == other.ancestors_are_invertible && has_potential_animation == other.has_potential_animation && is_currently_animating == other.is_currently_animating && to_screen_is_potentially_animated == other.to_screen_is_potentially_animated && has_only_translation_animations == other.has_only_translation_animations && flattens_inherited_transform == other.flattens_inherited_transform && node_and_ancestors_are_flat == other.node_and_ancestors_are_flat && node_and_ancestors_have_only_integer_translation == other.node_and_ancestors_have_only_integer_translation && scrolls == other.scrolls && should_be_snapped == other.should_be_snapped && moved_by_inner_viewport_bounds_delta_x == other.moved_by_inner_viewport_bounds_delta_x && moved_by_inner_viewport_bounds_delta_y == other.moved_by_inner_viewport_bounds_delta_y && moved_by_outer_viewport_bounds_delta_x == other.moved_by_outer_viewport_bounds_delta_x && moved_by_outer_viewport_bounds_delta_y == other.moved_by_outer_viewport_bounds_delta_y && in_subtree_of_page_scale_layer == other.in_subtree_of_page_scale_layer && transform_changed == other.transform_changed && post_local_scale_factor == other.post_local_scale_factor && scroll_offset == other.scroll_offset && snap_amount == other.snap_amount && source_offset == other.source_offset && source_to_parent == other.source_to_parent; } void TransformNode::update_pre_local_transform( const gfx::Point3F& transform_origin) { pre_local.MakeIdentity(); pre_local.Translate3d(-transform_origin.x(), -transform_origin.y(), -transform_origin.z()); } void TransformNode::update_post_local_transform( const gfx::PointF& position, const gfx::Point3F& transform_origin) { post_local.MakeIdentity(); post_local.Scale(post_local_scale_factor, post_local_scale_factor); post_local.Translate3d( position.x() + source_offset.x() + transform_origin.x(), position.y() + source_offset.y() + transform_origin.y(), transform_origin.z()); } void TransformNode::AsValueInto(base::trace_event::TracedValue* value) const { value->SetInteger("id", id); value->SetInteger("parent_id", parent_id); element_id.AddToTracedValue(value); MathUtil::AddToTracedValue("pre_local", pre_local, value); MathUtil::AddToTracedValue("local", local, value); MathUtil::AddToTracedValue("post_local", post_local, value); value->SetInteger("source_node_id", source_node_id); value->SetInteger("sorting_context_id", sorting_context_id); MathUtil::AddToTracedValue("scroll_offset", scroll_offset, value); MathUtil::AddToTracedValue("snap_amount", snap_amount, value); } TransformCachedNodeData::TransformCachedNodeData() : is_showing_backface(false) {} TransformCachedNodeData::TransformCachedNodeData( const TransformCachedNodeData& other) = default; TransformCachedNodeData::~TransformCachedNodeData() = default; bool TransformCachedNodeData::operator==( const TransformCachedNodeData& other) const { return from_screen == other.from_screen && to_screen == other.to_screen && is_showing_backface == other.is_showing_backface; } } // namespace cc