aboutsummaryrefslogtreecommitdiffstats
path: root/src/benchmarks/auto/animations/comparison/moving-images-animators.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/benchmarks/auto/animations/comparison/moving-images-animators.qml')
-rw-r--r--src/benchmarks/auto/animations/comparison/moving-images-animators.qml28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/benchmarks/auto/animations/comparison/moving-images-animators.qml b/src/benchmarks/auto/animations/comparison/moving-images-animators.qml
new file mode 100644
index 0000000..b0c17a1
--- /dev/null
+++ b/src/benchmarks/auto/animations/comparison/moving-images-animators.qml
@@ -0,0 +1,28 @@
+import QtQuick 2.2
+import QmlBench 1.0
+
+// Move images around using Animator types, to be compared with a number of
+// other similar ways to move them around.
+Benchmark {
+ id: root;
+
+ count: 500
+ staticCount: 20000
+
+ Repeater {
+ model: root.count
+ Image {
+ source: "qrc:///shared/butterfly-wide.png"
+ x: QmlBench.getRandom() * (root.width - width)
+ y: QmlBench.getRandom() * (root.height - height)
+ width: 40
+ height: 40
+
+ SequentialAnimation on rotation {
+ RotationAnimator { from: -10; to: 10; duration: 500; easing.type: Easing.InOutCubic }
+ RotationAnimator { from: 10; to: -10; duration: 500; easing.type: Easing.InOutCubic }
+ loops: Animation.Infinite
+ }
+ }
+ }
+}