aboutsummaryrefslogtreecommitdiffstats
path: root/src/benchmarks/manual/gputhroughput/opaquerect.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/benchmarks/manual/gputhroughput/opaquerect.qml')
-rw-r--r--src/benchmarks/manual/gputhroughput/opaquerect.qml19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/benchmarks/manual/gputhroughput/opaquerect.qml b/src/benchmarks/manual/gputhroughput/opaquerect.qml
new file mode 100644
index 0000000..dd1a07b
--- /dev/null
+++ b/src/benchmarks/manual/gputhroughput/opaquerect.qml
@@ -0,0 +1,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);
+ }
+ }
+}