aboutsummaryrefslogtreecommitdiffstats
path: root/benchmarks/auto/creation/quick.image/delegates_image_solid.qml
diff options
context:
space:
mode:
Diffstat (limited to 'benchmarks/auto/creation/quick.image/delegates_image_solid.qml')
-rw-r--r--benchmarks/auto/creation/quick.image/delegates_image_solid.qml18
1 files changed, 0 insertions, 18 deletions
diff --git a/benchmarks/auto/creation/quick.image/delegates_image_solid.qml b/benchmarks/auto/creation/quick.image/delegates_image_solid.qml
deleted file mode 100644
index 3f05d71..0000000
--- a/benchmarks/auto/creation/quick.image/delegates_image_solid.qml
+++ /dev/null
@@ -1,18 +0,0 @@
-import QtQuick 2.0
-import QmlBench 1.0
-
-// Test the creation of an Image with an RGB PNG
-// Compare with delegates_image_alpha
-CreationBenchmark {
- id: root;
- count: 50;
- staticCount: 2500;
-
- delegate: Image {
- x: QmlBench.getRandom() * (root.width - width)
- y: QmlBench.getRandom() * (root.height - height)
- source: "../../../../shared/solid.png"
- width: 20
- height: 20
- }
-}