aboutsummaryrefslogtreecommitdiffstats
path: root/src/benchmarks/auto/creation/quick/delegates_shadereffect_props.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/benchmarks/auto/creation/quick/delegates_shadereffect_props.qml')
-rw-r--r--src/benchmarks/auto/creation/quick/delegates_shadereffect_props.qml26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/benchmarks/auto/creation/quick/delegates_shadereffect_props.qml b/src/benchmarks/auto/creation/quick/delegates_shadereffect_props.qml
new file mode 100644
index 0000000..4aa855b
--- /dev/null
+++ b/src/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: "qrc:///shared/butterfly-wide.png"
+ }
+
+ delegate: ShaderEffect {
+ x: QmlBench.getRandom() * (root.width - width)
+ y: QmlBench.getRandom() * (root.height - height)
+ width: sourceImage.width
+ height: sourceImage.height
+ supportsAtlasTextures: true
+ property var source: sourceImage
+ }
+}
+
+