summaryrefslogtreecommitdiff
path: root/gfx/gl/shaders/shadowFixedPoint.vs
diff options
context:
space:
mode:
Diffstat (limited to 'gfx/gl/shaders/shadowFixedPoint.vs')
-rw-r--r--gfx/gl/shaders/shadowFixedPoint.vs8
1 files changed, 2 insertions, 6 deletions
diff --git a/gfx/gl/shaders/shadowFixedPoint.vs b/gfx/gl/shaders/shadowFixedPoint.vs
index c9fa19b..8921707 100644
--- a/gfx/gl/shaders/shadowFixedPoint.vs
+++ b/gfx/gl/shaders/shadowFixedPoint.vs
@@ -3,10 +3,6 @@
include(`meshIn.glsl')
uniform mat4 viewProjection;
+const mat4 model = mat4(1);
-void
-main()
-{
- gl_Position = viewProjection * vec4(position, 1.0);
- gl_Position.z = max(gl_Position.z, -1);
-}
+include(`commonShadowPoint.glsl')