aboutsummaryrefslogtreecommitdiffstats
path: root/src/benchmarks/auto/animations/comparison/moving-images-simple.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/benchmarks/auto/animations/comparison/moving-images-simple.qml')
-rw-r--r--src/benchmarks/auto/animations/comparison/moving-images-simple.qml29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/benchmarks/auto/animations/comparison/moving-images-simple.qml b/src/benchmarks/auto/animations/comparison/moving-images-simple.qml
new file mode 100644
index 0000000..39cc05e
--- /dev/null
+++ b/src/benchmarks/auto/animations/comparison/moving-images-simple.qml
@@ -0,0 +1,29 @@
+import QtQuick 2.2
+import QmlBench 1.0
+
+// Move images around using a global property binding, to be compared with a
+// number of other similar ways to move them around.
+Benchmark {
+ id: root;
+
+ count: 500
+ staticCount: 20000
+
+ property int frameCount
+ onTChanged: {
+ frameCount++
+ }
+
+ 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
+ rotation: index + frameCount
+ }
+ }
+}
+