aboutsummaryrefslogtreecommitdiffstats
path: root/src/benchmarks/auto/creation/qml.modelaccess/modelaccess_point.qml
diff options
context:
space:
mode:
authorVille Voutilainen <ville.voutilainen@qt.io>2021-12-01 13:14:20 +0200
committerVille Voutilainen <ville.voutilainen@qt.io>2022-01-04 11:12:11 +0000
commitc9d84ead801960601870240e36478468c2a28b82 (patch)
treefbd2c6ae0466ecfce032e5eebca10d02dcae7bf3 /src/benchmarks/auto/creation/qml.modelaccess/modelaccess_point.qml
parent6d298da7cda85b35aa22c68aac55fdb6513e68eb (diff)
Use a resource file for benchmarks, and add some Android goodies and fixes
Task-number: QTBUG-94148 Change-Id: I7cc0b1ade676c4f7f963915315c00e317582e56f Reviewed-by: Daniel Smith <Daniel.Smith@qt.io>
Diffstat (limited to 'src/benchmarks/auto/creation/qml.modelaccess/modelaccess_point.qml')
-rw-r--r--src/benchmarks/auto/creation/qml.modelaccess/modelaccess_point.qml24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/benchmarks/auto/creation/qml.modelaccess/modelaccess_point.qml b/src/benchmarks/auto/creation/qml.modelaccess/modelaccess_point.qml
new file mode 100644
index 0000000..d107e3b
--- /dev/null
+++ b/src/benchmarks/auto/creation/qml.modelaccess/modelaccess_point.qml
@@ -0,0 +1,24 @@
+import QtQuick 2.0
+import QmlBench 1.0
+
+// Tests access of point properties from a C++ model
+Benchmark {
+ id: root;
+ count: 50
+ staticCount: 2500
+
+ onTChanged: {
+ testModel.rowNumber = 0
+ testModel.rowNumber = root.count
+ }
+
+ Repeater {
+ model: TestModel {
+ id: testModel
+ }
+ delegate: Item {
+ property point value: model.pointRole
+ }
+ }
+}
+