blob: 1d505c959542944f919f8b7bac803b32a17a7b50 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import QtQuick
ShaderEffect {
id: root
property color fillColor: "transparent"
property color strokeColor: "transparent"
property real strokeWidth: 0
property real cornerRadius: 12
fragmentShader: "squircle.qsb"
}
|