aboutsummaryrefslogtreecommitdiffstats
path: root/benchmarks/auto/changes/changing_text_oneofmany.qml
blob: 879b99bb82c3c23b6c99c5c14d3498466e3242e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import QtQuick 2.0
import QmlBench 1.0

// Testing the performance of changing 1 Text in a scene vs all (changing_texts)
Item {
    id: root;
    property int count: 100
    property int staticCount: 1000;

    property real t;
    NumberAnimation on t { from: 0; to: 1000; duration: 1000; loops: Animation.Infinite }

    Repeater {
        id: repeater
        model: root.count
        Text {
            x: QmlBench.getRandom() * root.width
            y: QmlBench.getRandom() * root.height
            text: index == 0 ? Math.round(t) : index;
        }
    }
}