summaryrefslogtreecommitdiffstats
path: root/basicsuite/Graphical Effects/effect_ThresholdMask.qml
diff options
context:
space:
mode:
Diffstat (limited to 'basicsuite/Graphical Effects/effect_ThresholdMask.qml')
-rw-r--r--basicsuite/Graphical Effects/effect_ThresholdMask.qml43
1 files changed, 0 insertions, 43 deletions
diff --git a/basicsuite/Graphical Effects/effect_ThresholdMask.qml b/basicsuite/Graphical Effects/effect_ThresholdMask.qml
deleted file mode 100644
index 24b73fc..0000000
--- a/basicsuite/Graphical Effects/effect_ThresholdMask.qml
+++ /dev/null
@@ -1,43 +0,0 @@
-import QtQuick 2.0
-import QtGraphicalEffects 1.0
-
-Item {
-
- id: root
-
- property real inputX: 0.5;
- property real inputY: 0.2;
-
- property real feedbackX: effect.threshold
- property real feedbackY: effect.spread
-
- property string nameX: "Threshold"
- property string nameY: "Spread"
-
- Image {
- id: image
- source: "images/bug.jpg"
- anchors.centerIn: parent
- visible: false
- }
-
- Image {
- id: mask
- source: "images/fog.png"
- visible: false
- }
-
- ThresholdMask {
- id: effect;
-
- source: image
- maskSource: mask;
- anchors.fill: source
-
- scale: source.height > root.height * 0.8 ? root.height / source.height * 0.8 : 1;
-
- threshold: root.inputX
- spread: root.inputY
- }
-
-}