aboutsummaryrefslogtreecommitdiffstats
path: root/benchmarks/auto/creation/quick/delegates_flipable.qml
diff options
context:
space:
mode:
Diffstat (limited to 'benchmarks/auto/creation/quick/delegates_flipable.qml')
-rw-r--r--benchmarks/auto/creation/quick/delegates_flipable.qml15
1 files changed, 0 insertions, 15 deletions
diff --git a/benchmarks/auto/creation/quick/delegates_flipable.qml b/benchmarks/auto/creation/quick/delegates_flipable.qml
deleted file mode 100644
index 15a29b3..0000000
--- a/benchmarks/auto/creation/quick/delegates_flipable.qml
+++ /dev/null
@@ -1,15 +0,0 @@
-import QtQuick 2.0
-import QmlBench 1.0
-
-// Tests the creation of Flipable with a few simple props.
-CreationBenchmark {
- id: root;
- count: 50
- staticCount: 2500
- delegate: Flipable {
- x: QmlBench.getRandom() * (root.width - width)
- y: QmlBench.getRandom() * (root.height - height)
- width: 30
- height: 15
- }
-}