aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--benchmarks/auto/creation/quick/delegates_shadereffect_props.qml26
1 files changed, 26 insertions, 0 deletions
diff --git a/benchmarks/auto/creation/quick/delegates_shadereffect_props.qml b/benchmarks/auto/creation/quick/delegates_shadereffect_props.qml
new file mode 100644
index 0000000..6d53309
--- /dev/null
+++ b/benchmarks/auto/creation/quick/delegates_shadereffect_props.qml
@@ -0,0 +1,26 @@
+import QtQuick 2.4
+import QmlBench 1.0
+
+// Tests the creation of ShaderEffect with custom properties,
+// as these add additional cost
+CreationBenchmark {
+ id: root;
+ count: 50;
+ staticCount: 2500;
+
+ Image {
+ id: sourceImage
+ source: "../../../../shared/butterfly-wide.png"
+ }
+
+ delegate: ShaderEffect {
+ x: Math.random() * (root.width - width)
+ y: Math.random() * (root.height - height)
+ width: sourceImage.width
+ height: sourceImage.height
+ supportsAtlasTextures: true
+ property var source: sourceImage
+ }
+}
+
+