aboutsummaryrefslogtreecommitdiffstats
path: root/src/benchmarks/auto/bindings/compositesingleton.qml
blob: ae77357d6000628880b4bcc02670a67a8b8f2eb0 (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 "qrc:///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
    }
}