aboutsummaryrefslogtreecommitdiffstats
path: root/src/benchmarks/auto/changes/changing_texts.qml
blob: 27154823e0091e6a25c2806fb80dffd1f077f3da (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 all texts in a scene vs 1 (text_oneofmany)
Item {
    id: root;
    property int count: 100;
    property int staticCount: 1000;

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

    Repeater {
        id: repeater
        model: root.count
        Text {
            x: QmlBench.getRandom() * root.width
            y: QmlBench.getRandom() * root.height
            text: Math.floor( root.t * 1000 ) / 1000;
        }
    }
}