aboutsummaryrefslogtreecommitdiffstats
path: root/benchmarks/auto/creation/quick.item/delegates_item_empty.qml
blob: f6359091591798a37c1e53e43ea5e3ea21e76e64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQuick 2.0
import QmlBench 1.0

// Tests the creation of an empty Item.
// Compare with delegates_item_empty_jscreation
CreationBenchmark {
    id: root
    count: 50;
    staticCount: 5000;
    delegate: Item {
    }
}