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

// Compare with delegates_item_states
CreationBenchmark {
    id: root;
    count: 50
    staticCount: 5000
    delegate: Item {
        id: itemInstance
        x: Math.random() * (root.width - width)
        y: Math.random() * (root.height - height)
        width: 30
        height: 15
        visible: 1 == 1 ? true : false
    }
}