aboutsummaryrefslogtreecommitdiffstats
path: root/benchmarks/auto/changes/changing_over_isolated.qml
blob: 72f9f1a8b4ee21392a47cdb721707ac9e98076b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import QtQuick 2.0
import QmlBench 1.0

// This benchmark determines if clipping two subtrees isolates them,
// such that one changing subtree won't affect performance because
// of the other.
CreationBenchmark {
    id: root;
    count: 1000;
    staticCount: 2000

    // Boolean because: isolating via clip either keeps performance good, or
    // performance is awful if we break it.
    isBooleanResult: true;

    // Create a static subtree of items. This tree does not change.
    Item {
        anchors.fill: parent
        clip: true
        Repeater {
            id: repeater
            model: root.count

            Rectangle {
                color: Qt.hsla(QmlBench.getRandom(), 0.9, 0.4)
                width: 20
                height: 20
                x: QmlBench.getRandom() * root.width
                y: QmlBench.getRandom() * root.height

                Text {
                    color: "white"
                    text: "X"
                    anchors.centerIn: parent
                    font.pixelSize: 10
                }
            }
        }
    }

    // Create a subtree containing a single item. This tree does change.
    Item {
        anchors.fill: parent
        clip: true
        Text {
            anchors.centerIn: parent
            text: "test: " + root.t;
        }
    }
}