summaryrefslogtreecommitdiff
path: root/src/rend2/glsl/dlight_fp.glsl
diff options
context:
space:
mode:
Diffstat (limited to 'src/rend2/glsl/dlight_fp.glsl')
-rw-r--r--src/rend2/glsl/dlight_fp.glsl12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/rend2/glsl/dlight_fp.glsl b/src/rend2/glsl/dlight_fp.glsl
deleted file mode 100644
index 8ffca5b9..00000000
--- a/src/rend2/glsl/dlight_fp.glsl
+++ /dev/null
@@ -1,12 +0,0 @@
-uniform sampler2D u_DiffuseMap;
-
-varying vec2 var_Tex1;
-varying vec4 var_Color;
-
-
-void main()
-{
- vec4 color = texture2D(u_DiffuseMap, var_Tex1);
-
- gl_FragColor = color * var_Color;
-}