summaryrefslogtreecommitdiff
path: root/src/rend2/glsl/ssao_vp.glsl
diff options
context:
space:
mode:
Diffstat (limited to 'src/rend2/glsl/ssao_vp.glsl')
-rw-r--r--src/rend2/glsl/ssao_vp.glsl12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/rend2/glsl/ssao_vp.glsl b/src/rend2/glsl/ssao_vp.glsl
deleted file mode 100644
index 9c46a79f..00000000
--- a/src/rend2/glsl/ssao_vp.glsl
+++ /dev/null
@@ -1,12 +0,0 @@
-attribute vec4 attr_Position;
-attribute vec4 attr_TexCoord0;
-
-varying vec2 var_ScreenTex;
-
-void main()
-{
- gl_Position = attr_Position;
- var_ScreenTex = attr_TexCoord0.xy;
- //vec2 screenCoords = gl_Position.xy / gl_Position.w;
- //var_ScreenTex = screenCoords * 0.5 + 0.5;
-}