summaryrefslogtreecommitdiffstats
path: root/src/animation/backend/evaluateclipanimatorjob.cpp
diff options
context:
space:
mode:
authorSean Harmer <sean.harmer@kdab.com>2017-03-03 10:04:58 +0000
committerSean Harmer <sean.harmer@kdab.com>2017-03-06 17:19:17 +0000
commitbc1495b525fa3343b85c3d187202d03aa7eeea17 (patch)
treea0f704adfcae46133e066379f7efec814a2ac830 /src/animation/backend/evaluateclipanimatorjob.cpp
parent84f907017bb4fc72faf86bd70fbf49d629bc93f3 (diff)
Rename animationEvaluationDataForAnimator
Be less verbose and for consistency with evaluationDataForClip. Change-Id: Ifcd1ffe5275dab8dfbfcd4c90719bf33d4a9509f Reviewed-by: Mike Krus <mike.krus@kdab.com>
Diffstat (limited to 'src/animation/backend/evaluateclipanimatorjob.cpp')
-rw-r--r--src/animation/backend/evaluateclipanimatorjob.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/animation/backend/evaluateclipanimatorjob.cpp b/src/animation/backend/evaluateclipanimatorjob.cpp
index cbad58638..06f2cdf7e 100644
--- a/src/animation/backend/evaluateclipanimatorjob.cpp
+++ b/src/animation/backend/evaluateclipanimatorjob.cpp
@@ -66,7 +66,7 @@ void EvaluateClipAnimatorJob::run()
AnimationClipLoader *clip = m_handler->animationClipLoaderManager()->lookupResource(clipAnimator->clipId());
Q_ASSERT(clip);
// Prepare for evaluation (convert global time to local time ....)
- const AnimatorEvaluationData animatorEvaluationData = animatorEvaluationDataForAnimator(clipAnimator, globalTime);
+ const AnimatorEvaluationData animatorEvaluationData = evaluationDataForAnimator(clipAnimator, globalTime);
const ClipPreEvaluationData preEvaluationDataForClip = evaluationDataForClip(clip, animatorEvaluationData);
const QVector<float> channelResults = evaluateClipAtLocalTime(clip, preEvaluationDataForClip.localTime);