summaryrefslogtreecommitdiff
path: root/terrain_vertex.glsl
diff options
context:
space:
mode:
Diffstat (limited to 'terrain_vertex.glsl')
-rw-r--r--terrain_vertex.glsl12
1 files changed, 0 insertions, 12 deletions
diff --git a/terrain_vertex.glsl b/terrain_vertex.glsl
deleted file mode 100644
index 8bb21d0..0000000
--- a/terrain_vertex.glsl
+++ /dev/null
@@ -1,12 +0,0 @@
-varying vec3 normal, light_pos, V, N;
-varying vec4 diffuse, ambient;
-
-void main() {
- normal = gl_Normal;
- light_pos = vec3(0, 1, 0);
-
- gl_TexCoord[0] = gl_MultiTexCoord0;
- gl_Position = gl_ModelViewProjectionMatrix * gl_Vertex;
-}
-
-/* vim: set syn=glsl: */