summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Krus <mike.krus@kdab.com>2022-06-21 10:59:30 +0100
committerMike Krus <mike.krus@kdab.com>2022-06-29 13:34:27 +0100
commitbbff226e4b51d164e78d46e18bd61350888e66ad (patch)
treeba1771570a770977edf67dc7f17864faa181f3c4
parentc861ad288c12b0e5fccb83868595b41b039106e6 (diff)
downloadqt3d-bbff226e4b51d164e78d46e18bd61350888e66ad.tar.gz
Qt3DAnimation: includemocs
(manual pick from dev as 6.4 was missing) Task-number: QTBUG-103286 Change-Id: Ic2f635393e0351eac792320b0dac68997fa4a053 Reviewed-by: Paul Lemire <paul.lemire@kdab.com>
-rw-r--r--src/animation/frontend/qabstractanimation.cpp2
-rw-r--r--src/animation/frontend/qabstractanimationclip.cpp2
-rw-r--r--src/animation/frontend/qabstractchannelmapping.cpp2
-rw-r--r--src/animation/frontend/qabstractclipanimator.cpp2
-rw-r--r--src/animation/frontend/qabstractclipblendnode.cpp2
-rw-r--r--src/animation/frontend/qadditiveclipblend.cpp2
-rw-r--r--src/animation/frontend/qanimationaspect.cpp2
-rw-r--r--src/animation/frontend/qanimationclip.cpp2
-rw-r--r--src/animation/frontend/qanimationcliploader.cpp2
-rw-r--r--src/animation/frontend/qanimationcontroller.cpp2
-rw-r--r--src/animation/frontend/qanimationgroup.cpp2
-rw-r--r--src/animation/frontend/qblendedclipanimator.cpp2
-rw-r--r--src/animation/frontend/qcallbackmapping.cpp2
-rw-r--r--src/animation/frontend/qchannelmapper.cpp2
-rw-r--r--src/animation/frontend/qchannelmapping.cpp2
-rw-r--r--src/animation/frontend/qclipanimator.cpp2
-rw-r--r--src/animation/frontend/qclipblendvalue.cpp2
-rw-r--r--src/animation/frontend/qclock.cpp2
-rw-r--r--src/animation/frontend/qkeyframeanimation.cpp2
-rw-r--r--src/animation/frontend/qlerpclipblend.cpp2
-rw-r--r--src/animation/frontend/qmorphinganimation.cpp2
-rw-r--r--src/animation/frontend/qmorphtarget.cpp2
-rw-r--r--src/animation/frontend/qskeletonmapping.cpp2
-rw-r--r--src/animation/frontend/qvertexblendanimation.cpp2
24 files changed, 48 insertions, 0 deletions
diff --git a/src/animation/frontend/qabstractanimation.cpp b/src/animation/frontend/qabstractanimation.cpp
index 52f63c723..0357b60f5 100644
--- a/src/animation/frontend/qabstractanimation.cpp
+++ b/src/animation/frontend/qabstractanimation.cpp
@@ -154,3 +154,5 @@ void QAbstractAnimation::setDuration(float duration)
} // Qt3DAnimation
QT_END_NAMESPACE
+
+#include "moc_qabstractanimation.cpp"
diff --git a/src/animation/frontend/qabstractanimationclip.cpp b/src/animation/frontend/qabstractanimationclip.cpp
index 9c22eef5e..0dabe9c16 100644
--- a/src/animation/frontend/qabstractanimationclip.cpp
+++ b/src/animation/frontend/qabstractanimationclip.cpp
@@ -122,3 +122,5 @@ float QAbstractAnimationClip::duration() const
} // namespace Qt3DAnimation
QT_END_NAMESPACE
+
+#include "moc_qabstractanimationclip.cpp"
diff --git a/src/animation/frontend/qabstractchannelmapping.cpp b/src/animation/frontend/qabstractchannelmapping.cpp
index 14891cbc0..9911dc869 100644
--- a/src/animation/frontend/qabstractchannelmapping.cpp
+++ b/src/animation/frontend/qabstractchannelmapping.cpp
@@ -32,3 +32,5 @@ QAbstractChannelMapping::~QAbstractChannelMapping()
} // namespace Qt3DAnimation
QT_END_NAMESPACE
+
+#include "moc_qabstractchannelmapping.cpp"
diff --git a/src/animation/frontend/qabstractclipanimator.cpp b/src/animation/frontend/qabstractclipanimator.cpp
index 66cb52a84..a095cba24 100644
--- a/src/animation/frontend/qabstractclipanimator.cpp
+++ b/src/animation/frontend/qabstractclipanimator.cpp
@@ -301,3 +301,5 @@ void QAbstractClipAnimator::stop()
} // namespace Qt3DAnimation
QT_END_NAMESPACE
+
+#include "moc_qabstractclipanimator.cpp"
diff --git a/src/animation/frontend/qabstractclipblendnode.cpp b/src/animation/frontend/qabstractclipblendnode.cpp
index ae08ced4d..0935e4ca8 100644
--- a/src/animation/frontend/qabstractclipblendnode.cpp
+++ b/src/animation/frontend/qabstractclipblendnode.cpp
@@ -101,3 +101,5 @@ QAbstractClipBlendNode::~QAbstractClipBlendNode()
} // Qt3DAnimation
QT_END_NAMESPACE
+
+#include "moc_qabstractclipblendnode.cpp"
diff --git a/src/animation/frontend/qadditiveclipblend.cpp b/src/animation/frontend/qadditiveclipblend.cpp
index 4a6ff7619..bd1f11d19 100644
--- a/src/animation/frontend/qadditiveclipblend.cpp
+++ b/src/animation/frontend/qadditiveclipblend.cpp
@@ -207,3 +207,5 @@ void QAdditiveClipBlend::setAdditiveClip(QAbstractClipBlendNode *additiveClip)
} // Qt3DAnimation
QT_END_NAMESPACE
+
+#include "moc_qadditiveclipblend.cpp"
diff --git a/src/animation/frontend/qanimationaspect.cpp b/src/animation/frontend/qanimationaspect.cpp
index 95512e787..40edc5c42 100644
--- a/src/animation/frontend/qanimationaspect.cpp
+++ b/src/animation/frontend/qanimationaspect.cpp
@@ -114,3 +114,5 @@ std::vector<QAspectJobPtr> QAnimationAspect::jobsToExecute(qint64 time)
QT_END_NAMESPACE
QT3D_REGISTER_NAMESPACED_ASPECT("animation", QT_PREPEND_NAMESPACE(Qt3DAnimation), QAnimationAspect)
+
+#include "moc_qanimationaspect.cpp"
diff --git a/src/animation/frontend/qanimationclip.cpp b/src/animation/frontend/qanimationclip.cpp
index c7a227c85..bc892f58b 100644
--- a/src/animation/frontend/qanimationclip.cpp
+++ b/src/animation/frontend/qanimationclip.cpp
@@ -59,3 +59,5 @@ void QAnimationClip::setClipData(const Qt3DAnimation::QAnimationClipData &clipDa
} // namespace Qt3DAnimation
QT_END_NAMESPACE
+
+#include "moc_qanimationclip.cpp"
diff --git a/src/animation/frontend/qanimationcliploader.cpp b/src/animation/frontend/qanimationcliploader.cpp
index e9128aed6..54e06c298 100644
--- a/src/animation/frontend/qanimationcliploader.cpp
+++ b/src/animation/frontend/qanimationcliploader.cpp
@@ -111,3 +111,5 @@ void QAnimationClipLoader::setSource(const QUrl &source)
} // namespace Qt3DAnimation
QT_END_NAMESPACE
+
+#include "moc_qanimationcliploader.cpp"
diff --git a/src/animation/frontend/qanimationcontroller.cpp b/src/animation/frontend/qanimationcontroller.cpp
index 31b06d800..b75599e74 100644
--- a/src/animation/frontend/qanimationcontroller.cpp
+++ b/src/animation/frontend/qanimationcontroller.cpp
@@ -355,3 +355,5 @@ QAnimationGroup *QAnimationController::getGroup(int index) const
} // Qt3DAnimation
QT_END_NAMESPACE
+
+#include "moc_qanimationcontroller.cpp"
diff --git a/src/animation/frontend/qanimationgroup.cpp b/src/animation/frontend/qanimationgroup.cpp
index ac8c29251..8674919e2 100644
--- a/src/animation/frontend/qanimationgroup.cpp
+++ b/src/animation/frontend/qanimationgroup.cpp
@@ -177,3 +177,5 @@ void QAnimationGroup::setPosition(float position)
} // Qt3DAnimation
QT_END_NAMESPACE
+
+#include "moc_qanimationgroup.cpp"
diff --git a/src/animation/frontend/qblendedclipanimator.cpp b/src/animation/frontend/qblendedclipanimator.cpp
index 23cafb482..2abbe2184 100644
--- a/src/animation/frontend/qblendedclipanimator.cpp
+++ b/src/animation/frontend/qblendedclipanimator.cpp
@@ -273,3 +273,5 @@ void QBlendedClipAnimator::setBlendTree(QAbstractClipBlendNode *blendTree)
} // namespace Qt3DAnimation
QT_END_NAMESPACE
+
+#include "moc_qblendedclipanimator.cpp"
diff --git a/src/animation/frontend/qcallbackmapping.cpp b/src/animation/frontend/qcallbackmapping.cpp
index 63514421f..72d960a81 100644
--- a/src/animation/frontend/qcallbackmapping.cpp
+++ b/src/animation/frontend/qcallbackmapping.cpp
@@ -108,3 +108,5 @@ void QCallbackMapping::setCallback(int type, QAnimationCallback *callback, QAnim
} // namespace Qt3DAnimation
QT_END_NAMESPACE
+
+#include "moc_qcallbackmapping.cpp"
diff --git a/src/animation/frontend/qchannelmapper.cpp b/src/animation/frontend/qchannelmapper.cpp
index 4e6aac23e..6f116c91d 100644
--- a/src/animation/frontend/qchannelmapper.cpp
+++ b/src/animation/frontend/qchannelmapper.cpp
@@ -76,3 +76,5 @@ QList<QAbstractChannelMapping *> QChannelMapper::mappings() const
} // namespace Qt3DAnimation
QT_END_NAMESPACE
+
+#include "moc_qchannelmapper.cpp"
diff --git a/src/animation/frontend/qchannelmapping.cpp b/src/animation/frontend/qchannelmapping.cpp
index 86fbb133b..f444929cd 100644
--- a/src/animation/frontend/qchannelmapping.cpp
+++ b/src/animation/frontend/qchannelmapping.cpp
@@ -216,3 +216,5 @@ void QChannelMapping::setProperty(const QString &property)
} // namespace Qt3DAnimation
QT_END_NAMESPACE
+
+#include "moc_qchannelmapping.cpp"
diff --git a/src/animation/frontend/qclipanimator.cpp b/src/animation/frontend/qclipanimator.cpp
index 93c824b0a..b39c31eec 100644
--- a/src/animation/frontend/qclipanimator.cpp
+++ b/src/animation/frontend/qclipanimator.cpp
@@ -130,3 +130,5 @@ void QClipAnimator::setClip(QAbstractAnimationClip *clip)
} // namespace Qt3DAnimation
QT_END_NAMESPACE
+
+#include "moc_qclipanimator.cpp"
diff --git a/src/animation/frontend/qclipblendvalue.cpp b/src/animation/frontend/qclipblendvalue.cpp
index 6ae07d311..4e4966354 100644
--- a/src/animation/frontend/qclipblendvalue.cpp
+++ b/src/animation/frontend/qclipblendvalue.cpp
@@ -86,3 +86,5 @@ void QClipBlendValue::setClip(Qt3DAnimation::QAbstractAnimationClip *clip)
} // namespace Qt3DAnimation
QT_END_NAMESPACE
+
+#include "moc_qclipblendvalue.cpp"
diff --git a/src/animation/frontend/qclock.cpp b/src/animation/frontend/qclock.cpp
index 2a83414e9..9acd4f658 100644
--- a/src/animation/frontend/qclock.cpp
+++ b/src/animation/frontend/qclock.cpp
@@ -54,3 +54,5 @@ void QClock::setPlaybackRate(double playbackRate)
}
QT_END_NAMESPACE
+
+#include "moc_qclock.cpp"
diff --git a/src/animation/frontend/qkeyframeanimation.cpp b/src/animation/frontend/qkeyframeanimation.cpp
index 46773b024..1e820493f 100644
--- a/src/animation/frontend/qkeyframeanimation.cpp
+++ b/src/animation/frontend/qkeyframeanimation.cpp
@@ -380,3 +380,5 @@ Qt3DCore::QTransform *QKeyframeAnimation::target() const
} // Qt3DAnimation
QT_END_NAMESPACE
+
+#include "moc_qkeyframeanimation.cpp"
diff --git a/src/animation/frontend/qlerpclipblend.cpp b/src/animation/frontend/qlerpclipblend.cpp
index 743c5257a..30a30c394 100644
--- a/src/animation/frontend/qlerpclipblend.cpp
+++ b/src/animation/frontend/qlerpclipblend.cpp
@@ -182,3 +182,5 @@ void QLerpClipBlend::setEndClip(Qt3DAnimation::QAbstractClipBlendNode *endClip)
} // Qt3DAnimation
QT_END_NAMESPACE
+
+#include "moc_qlerpclipblend.cpp"
diff --git a/src/animation/frontend/qmorphinganimation.cpp b/src/animation/frontend/qmorphinganimation.cpp
index 178b03673..af37bd2ae 100644
--- a/src/animation/frontend/qmorphinganimation.cpp
+++ b/src/animation/frontend/qmorphinganimation.cpp
@@ -418,3 +418,5 @@ void QMorphingAnimation::updateAnimation(float position)
} // Qt3DAnimation
QT_END_NAMESPACE
+
+#include "moc_qmorphinganimation.cpp"
diff --git a/src/animation/frontend/qmorphtarget.cpp b/src/animation/frontend/qmorphtarget.cpp
index b44d20b8c..9151fde8e 100644
--- a/src/animation/frontend/qmorphtarget.cpp
+++ b/src/animation/frontend/qmorphtarget.cpp
@@ -154,3 +154,5 @@ QMorphTarget *QMorphTarget::fromGeometry(Qt3DCore::QGeometry *geometry, const QS
} // Qt3DAnimation
QT_END_NAMESPACE
+
+#include "moc_qmorphtarget.cpp"
diff --git a/src/animation/frontend/qskeletonmapping.cpp b/src/animation/frontend/qskeletonmapping.cpp
index d34d86c9c..5a66cf61e 100644
--- a/src/animation/frontend/qskeletonmapping.cpp
+++ b/src/animation/frontend/qskeletonmapping.cpp
@@ -59,3 +59,5 @@ void QSkeletonMapping::setSkeleton(Qt3DCore::QAbstractSkeleton *skeleton)
} // namespace Qt3DAnimation
QT_END_NAMESPACE
+
+#include "moc_qskeletonmapping.cpp"
diff --git a/src/animation/frontend/qvertexblendanimation.cpp b/src/animation/frontend/qvertexblendanimation.cpp
index 7bc9b673b..c7cc88bb6 100644
--- a/src/animation/frontend/qvertexblendanimation.cpp
+++ b/src/animation/frontend/qvertexblendanimation.cpp
@@ -304,3 +304,5 @@ void QVertexBlendAnimation::updateAnimation(float position)
} // Qt3DAnimation
QT_END_NAMESPACE
+
+#include "moc_qvertexblendanimation.cpp"