aboutsummaryrefslogtreecommitdiffstats
path: root/benchmarks/manual/gputhroughput/opaquetexture.qml
blob: 483903afc54aba1489946b523f909c350e1cfb32 (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
import QtQuick 2.0

Item {
    id: root;

    property int count;
    property int staticCount: 0

    Repeater {
        model: root.count;
        Rectangle {
            width: root.width
            height: root.height
            color: Qt.hsla((index * .271) % 1.0, 0.5, 0.5);
            z: index
            layer.enabled: true
            layer.effect: ShaderEffect {
                blending: false
            }
        }
    }


}