aboutsummaryrefslogtreecommitdiffstats
path: root/benchmarks/auto/bindings/compositesingleton.qml
blob: aad80ccb19ef213cd6de99dfa7fa5a0de3191bf4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import QtQuick 2.0
import QmlBench 1.0
import "../../../shared"

// Tests the creation of Items bound to a QML-defined singleton
CreationBenchmark {
    id: root;
    count: 50;
    staticCount: 2500;
    delegate: Item {
        x: Globals.realProp
        y: Globals.intProp
        smooth: Globals.boolProp
    }
}