aboutsummaryrefslogtreecommitdiffstats
path: root/benchmarks/auto/creation/quick.item/item_anchors.qml
blob: 1e0e8cc65a23763d9a3ff946e29f00ab0261b1e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import QtQuick 2.0
import QmlBench 1.0

// Testing the performance of anchors against w/h bindings (item_size).
CreationBenchmark {
    id: root;
    count: 50;
    staticCount: 2500;
    delegate: Item {
        x: QmlBench.getRandom() * (root.width - width)
        y: QmlBench.getRandom() * (root.height - height)
        width: 30
        height: 15

        Item {
            anchors.fill: parent
        }
    }
}