aboutsummaryrefslogtreecommitdiffstats
path: root/benchmarks/auto/changes/changing_over_isolated_with_clip.qml
blob: 487ed21d5dc114f33a0585a7b107758eb3df9d87 (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
import QtQuick 2.0
import QmlBench 1.0

// Tests that a single item changing in one subtree, and many items in another
// tree, do not have bad performance when both subtrees are isolated with
// "clip: true".
Item {
    id: root;
    property int count: 100;
    property int staticCount: 2000

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

    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
                clip: true

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

    Item {
        anchors.fill: parent
        clip: true
        Text {
            anchors.centerIn: parent
            text: "test: " + root.t;
        }
    }

}