aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/effects_qt6/RadialBlurEffect.qml
blob: f171c5b3743fc6182396b2e183fd2c4274e3660c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright (C) 2026 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

import QtQuick
import Qt5Compat.GraphicalEffects

FastBlur {

    property int samples: 0
    property real verticalOffset: 0
    property real horizontalOffset: 0
    property real angle: 0

    id: radialBlur

    transparentBorder: true

    Component.onCompleted: console.log("RadiallBlur is not supported with Qt 6")
}