aboutsummaryrefslogtreecommitdiffstats
path: root/src/effects/data/BlurItem.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/effects/data/BlurItem.qml')
-rw-r--r--src/effects/data/BlurItem.qml11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/effects/data/BlurItem.qml b/src/effects/data/BlurItem.qml
new file mode 100644
index 0000000000..f8069cc2cf
--- /dev/null
+++ b/src/effects/data/BlurItem.qml
@@ -0,0 +1,11 @@
+// Copyright (C) 2022 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
+
+import QtQuick
+
+ShaderEffect {
+ id: blurredItem
+ property vector2d offset
+ visible: false
+ smooth: true
+}