aboutsummaryrefslogtreecommitdiffstats
path: root/benchmarks/auto/creation/quick.image/delegates_image_async.qml
diff options
context:
space:
mode:
Diffstat (limited to 'benchmarks/auto/creation/quick.image/delegates_image_async.qml')
-rw-r--r--benchmarks/auto/creation/quick.image/delegates_image_async.qml25
1 files changed, 0 insertions, 25 deletions
diff --git a/benchmarks/auto/creation/quick.image/delegates_image_async.qml b/benchmarks/auto/creation/quick.image/delegates_image_async.qml
deleted file mode 100644
index 5c27029..0000000
--- a/benchmarks/auto/creation/quick.image/delegates_image_async.qml
+++ /dev/null
@@ -1,25 +0,0 @@
-import QtQuick 2.0
-import QmlBench 1.0
-
-// Test the creation of an asynchronously loaded image.
-CreationBenchmark {
- id: root;
- count: 50;
- staticCount: 2500;
-
- property var names: [
- "butterfly-wide.png",
- "butterfly-half.png",
- "butterfly-collapsed.png"
- ];
-
- delegate: Image {
- x: QmlBench.getRandom() * (root.width - width)
- y: QmlBench.getRandom() * (root.height - height)
- source: "../../../../shared/" + root.names[index % 3];
- width: 20
- height: 20
- asynchronous: true
- }
-}
-