summaryrefslogtreecommitdiff
path: root/src/rend2/glsl/bokeh_vp.glsl
diff options
context:
space:
mode:
Diffstat (limited to 'src/rend2/glsl/bokeh_vp.glsl')
-rw-r--r--src/rend2/glsl/bokeh_vp.glsl13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/rend2/glsl/bokeh_vp.glsl b/src/rend2/glsl/bokeh_vp.glsl
deleted file mode 100644
index 5ca41600..00000000
--- a/src/rend2/glsl/bokeh_vp.glsl
+++ /dev/null
@@ -1,13 +0,0 @@
-attribute vec4 attr_Position;
-attribute vec4 attr_TexCoord0;
-
-uniform mat4 u_ModelViewProjectionMatrix;
-
-varying vec2 var_TexCoords;
-
-
-void main()
-{
- gl_Position = u_ModelViewProjectionMatrix * attr_Position;
- var_TexCoords = attr_TexCoord0.st;
-}