aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Brasser <mbrasser@ford.com>2019-06-17 09:53:25 -0500
committerDaniel Smith <Daniel.Smith@qt.io>2019-06-25 13:09:25 +0000
commit4e669683277e9772d023287afd169c153b28ce84 (patch)
tree6dd59f0516f16e2c38e6536f451becc0aaabe879
parent0ed00e9df9602c1b1c6dd2bb108360493dba97fb (diff)
Add benchmark for DropShadow
Change-Id: I76bad16f97871aaa3d7238c5e13189ccccc441d2 Reviewed-by: Daniel Smith <Daniel.Smith@qt.io> Reviewed-by: Eskil Abrahamsen Blomfeldt <eskil.abrahamsen-blomfeldt@qt.io>
-rw-r--r--benchmarks/auto/creation/qtgraphicaleffects/delegates_dropshadow.qml48
1 files changed, 48 insertions, 0 deletions
diff --git a/benchmarks/auto/creation/qtgraphicaleffects/delegates_dropshadow.qml b/benchmarks/auto/creation/qtgraphicaleffects/delegates_dropshadow.qml
new file mode 100644
index 0000000..6ac6034
--- /dev/null
+++ b/benchmarks/auto/creation/qtgraphicaleffects/delegates_dropshadow.qml
@@ -0,0 +1,48 @@
+/****************************************************************************
+**
+** Copyright (C) 2019 The Qt Company Ltd.
+** Contact: https://www.qt.io/licensing/
+**
+** This file is part of the qmlbench tool.
+**
+** $QT_BEGIN_LICENSE:GPL-EXCEPT$
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and The Qt Company. For licensing terms
+** and conditions see https://www.qt.io/terms-conditions. For further
+** information use the contact form at https://www.qt.io/contact-us.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU
+** General Public License version 3 as published by the Free Software
+** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
+** included in the packaging of this file. Please review the following
+** information to ensure the GNU General Public License requirements will
+** be met: https://www.gnu.org/licenses/gpl-3.0.html.
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+import QtQuick 2.0
+import QtGraphicalEffects 1.0
+import QmlBench 1.0
+
+CreationBenchmark {
+ id: root
+ count: 50
+ staticCount: 100
+ delegate: Rectangle {
+ x: QmlBench.getRandom() * (root.width - width)
+ y: QmlBench.getRandom() * (root.height - height)
+ width: 30
+ height: 15
+ layer.enabled: true
+ layer.effect: DropShadow {
+ samples: 15
+ }
+ }
+}
+