From 4e669683277e9772d023287afd169c153b28ce84 Mon Sep 17 00:00:00 2001 From: Michael Brasser Date: Mon, 17 Jun 2019 09:53:25 -0500 Subject: Add benchmark for DropShadow Change-Id: I76bad16f97871aaa3d7238c5e13189ccccc441d2 Reviewed-by: Daniel Smith Reviewed-by: Eskil Abrahamsen Blomfeldt --- .../qtgraphicaleffects/delegates_dropshadow.qml | 48 ++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 benchmarks/auto/creation/qtgraphicaleffects/delegates_dropshadow.qml 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 + } + } +} + -- cgit v1.2.3