summaryrefslogtreecommitdiff
path: root/src/effects/shaders/recursiveblur.vert
diff options
context:
space:
mode:
Diffstat (limited to 'src/effects/shaders/recursiveblur.vert')
-rw-r--r--src/effects/shaders/recursiveblur.vert14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/effects/shaders/recursiveblur.vert b/src/effects/shaders/recursiveblur.vert
deleted file mode 100644
index 67f64e1..0000000
--- a/src/effects/shaders/recursiveblur.vert
+++ /dev/null
@@ -1,14 +0,0 @@
-attribute highp vec4 qt_Vertex;
-attribute highp vec2 qt_MultiTexCoord0;
-uniform highp mat4 qt_Matrix;
-uniform highp float expandX;
-uniform highp float expandY;
-varying highp vec2 qt_TexCoord0;
-
-void main() {
- mediump vec2 texCoord = qt_MultiTexCoord0;
- texCoord.s = (texCoord.s - expandX) / (1.0 - 2.0 * expandX);
- texCoord.t = (texCoord.t - expandY) / (1.0 - 2.0 * expandY);
- qt_TexCoord0 = texCoord;
- gl_Position = qt_Matrix * qt_Vertex;
-}