aboutsummaryrefslogtreecommitdiffstats
path: root/src/benchmarks/manual/gputhroughput/opaquerect.qml
blob: dd1a07ba39b5ff54455d70dd2233d2901c2cf63e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import QtQuick 2.0

// Stacks x number of opaque rectangles on top of each other.
// Will go a lot higher than blendedrect if the target hardware supprts
// [early-z](https://en.wikipedia.org/?title=Z-buffering)
Item {
    id: root;
    property int count: 16;
    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);
        }
    }
}