OLD | NEW |
1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CC_ANIMATION_ANIMATION_CURVE_H_ | 5 #ifndef CC_ANIMATION_ANIMATION_CURVE_H_ |
6 #define CC_ANIMATION_ANIMATION_CURVE_H_ | 6 #define CC_ANIMATION_ANIMATION_CURVE_H_ |
7 | 7 |
8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
9 #include "base/time/time.h" | 9 #include "base/time/time.h" |
10 #include "cc/base/cc_export.h" | 10 #include "cc/base/cc_export.h" |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 // returns false. | 75 // returns false. |
76 virtual bool AnimatedBoundsForBox(const gfx::BoxF& box, | 76 virtual bool AnimatedBoundsForBox(const gfx::BoxF& box, |
77 gfx::BoxF* bounds) const = 0; | 77 gfx::BoxF* bounds) const = 0; |
78 | 78 |
79 // Returns true if this animation affects scale. | 79 // Returns true if this animation affects scale. |
80 virtual bool AffectsScale() const = 0; | 80 virtual bool AffectsScale() const = 0; |
81 | 81 |
82 // Returns true if this animation is a translation. | 82 // Returns true if this animation is a translation. |
83 virtual bool IsTranslation() const = 0; | 83 virtual bool IsTranslation() const = 0; |
84 | 84 |
| 85 // Returns true if this animation preserves axis alignment. |
| 86 virtual bool PreservesAxisAlignment() const = 0; |
| 87 |
85 // Set |max_scale| to the maximum scale along any dimension at the end of | 88 // Set |max_scale| to the maximum scale along any dimension at the end of |
86 // intermediate animation target points (eg keyframe end points). When | 89 // intermediate animation target points (eg keyframe end points). When |
87 // |forward_direction| is true, the animation curve assumes it plays from | 90 // |forward_direction| is true, the animation curve assumes it plays from |
88 // the first keyframe to the last, otherwise it assumes the opposite. Returns | 91 // the first keyframe to the last, otherwise it assumes the opposite. Returns |
89 // false if the maximum scale cannot be computed. | 92 // false if the maximum scale cannot be computed. |
90 virtual bool MaximumTargetScale(bool forward_direction, | 93 virtual bool MaximumTargetScale(bool forward_direction, |
91 float* max_scale) const = 0; | 94 float* max_scale) const = 0; |
92 | 95 |
93 // Partial Animation implementation. | 96 // Partial Animation implementation. |
94 CurveType Type() const override; | 97 CurveType Type() const override; |
95 }; | 98 }; |
96 | 99 |
97 class CC_EXPORT FilterAnimationCurve : public AnimationCurve { | 100 class CC_EXPORT FilterAnimationCurve : public AnimationCurve { |
98 public: | 101 public: |
99 ~FilterAnimationCurve() override {} | 102 ~FilterAnimationCurve() override {} |
100 | 103 |
101 virtual FilterOperations GetValue(base::TimeDelta t) const = 0; | 104 virtual FilterOperations GetValue(base::TimeDelta t) const = 0; |
102 virtual bool HasFilterThatMovesPixels() const = 0; | 105 virtual bool HasFilterThatMovesPixels() const = 0; |
103 | 106 |
104 // Partial Animation implementation. | 107 // Partial Animation implementation. |
105 CurveType Type() const override; | 108 CurveType Type() const override; |
106 }; | 109 }; |
107 | 110 |
108 } // namespace cc | 111 } // namespace cc |
109 | 112 |
110 #endif // CC_ANIMATION_ANIMATION_CURVE_H_ | 113 #endif // CC_ANIMATION_ANIMATION_CURVE_H_ |
OLD | NEW |