summaryrefslogtreecommitdiffstats
path: root/tests/auto/animation/blendedclipanimator
diff options
context:
space:
mode:
authorPaul Lemire <paul.lemire@kdab.com>2017-01-31 11:57:02 +0100
committerPaul Lemire <paul.lemire@kdab.com>2017-01-31 14:09:55 +0000
commitc35f8e7c5f573fcc89b3042157d5843d9322ac90 (patch)
tree441f70a284d957056d917842b76881fe6420b13e /tests/auto/animation/blendedclipanimator
parent26b1dd88d374b17314218584487a383e3d558018 (diff)
BlendedAnimations: allow nested blending nodes evaluation
Change-Id: Ic6a70ee57f56dff7406b5917d620ea15b74ecb44 Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
Diffstat (limited to 'tests/auto/animation/blendedclipanimator')
-rw-r--r--tests/auto/animation/blendedclipanimator/tst_blendedclipanimator.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/auto/animation/blendedclipanimator/tst_blendedclipanimator.cpp b/tests/auto/animation/blendedclipanimator/tst_blendedclipanimator.cpp
index c53f6ec62..04cc1026e 100644
--- a/tests/auto/animation/blendedclipanimator/tst_blendedclipanimator.cpp
+++ b/tests/auto/animation/blendedclipanimator/tst_blendedclipanimator.cpp
@@ -65,7 +65,6 @@ private Q_SLOTS:
QCOMPARE(backendBlendedClipAnimator.isRunning(), false);
QCOMPARE(backendBlendedClipAnimator.startTime(), 0);
QCOMPARE(backendBlendedClipAnimator.currentLoop(), 0);
- QCOMPARE(backendBlendedClipAnimator.mappingData().size(), 0);
QCOMPARE(backendBlendedClipAnimator.loops(), 1);
}
@@ -83,9 +82,6 @@ private Q_SLOTS:
backendBlendedClipAnimator.setMapperId(Qt3DCore::QNodeId::createId());
backendBlendedClipAnimator.setRunning(true);
backendBlendedClipAnimator.setStartTime(28);
- QVector<Qt3DAnimation::Animation::AnimationUtils::BlendingMappingData> mappingData;
- mappingData.resize(5);
- backendBlendedClipAnimator.setMappingData(mappingData);
backendBlendedClipAnimator.cleanup();
// THEN
@@ -95,7 +91,6 @@ private Q_SLOTS:
QCOMPARE(backendBlendedClipAnimator.isRunning(), false);
QCOMPARE(backendBlendedClipAnimator.startTime(), 0);
QCOMPARE(backendBlendedClipAnimator.currentLoop(), 0);
- QCOMPARE(backendBlendedClipAnimator.mappingData().size(), 0);
QCOMPARE(backendBlendedClipAnimator.loops(), 1);
}