Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 712dcc5a authored by Wei Sheng Shih's avatar Wei Sheng Shih Committed by Android (Google) Code Review
Browse files

Merge "Correct AnimationSet#getTransformationAt" into main

parents 32390515 24d6ea8e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -374,7 +374,7 @@ public class AnimationSet extends Animation {
            final Animation a = mAnimations.get(i);

            temp.clear();
            a.getTransformationAt(interpolatedTime, t);
            a.getTransformationAt(interpolatedTime, temp);
            t.compose(temp);
        }
    }
+1 −0
Original line number Diff line number Diff line
@@ -78,6 +78,7 @@ public class Transformation {
        mHasClipRect = false;
        mAlpha = 1.0f;
        mTransformationType = TYPE_BOTH;
        mInsets = Insets.NONE;
    }

    /**