aboutsummaryrefslogtreecommitdiffstats
path: root/src/effects/shaders/recursiveblur.frag
diff options
context:
space:
mode:
Diffstat (limited to 'src/effects/shaders/recursiveblur.frag')
-rw-r--r--src/effects/shaders/recursiveblur.frag6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/effects/shaders/recursiveblur.frag b/src/effects/shaders/recursiveblur.frag
new file mode 100644
index 0000000..5562929
--- /dev/null
+++ b/src/effects/shaders/recursiveblur.frag
@@ -0,0 +1,6 @@
+varying mediump vec2 qt_TexCoord0;
+uniform highp float qt_Opacity;
+uniform lowp sampler2D source;
+void main() {
+ gl_FragColor = texture2D(source, qt_TexCoord0) * qt_Opacity;
+}