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

Commit c5d3dde6 authored by John Reck's avatar John Reck Committed by Android Git Automerger
Browse files

am 8b1154c4: Merge "Move updateMatrix() call to animateCommon" into mnc-dev

* commit '8b1154c4':
  Move updateMatrix() call to animateCommon
parents 0e0d4ec9 8b1154c4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -117,7 +117,6 @@ uint32_t AnimatorManager::animate(TreeInfo& info) {

    uint32_t dirty = animateCommon(info);

    mParent.mProperties.updateMatrix();
    info.damageAccumulator->pushTransform(&mParent);
    mParent.damageSelf(info);

@@ -136,6 +135,7 @@ uint32_t AnimatorManager::animateCommon(TreeInfo& info) {
    newEnd = std::remove_if(mAnimators.begin(), mAnimators.end(), functor);
    mAnimators.erase(newEnd, mAnimators.end());
    mAnimationHandle->notifyAnimationsRan();
    mParent.mProperties.updateMatrix();
    return functor.dirtyMask;
}