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