summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gfx/gl/shaders/shadowDynamicPointStencil.fs2
1 files changed, 1 insertions, 1 deletions
diff --git a/gfx/gl/shaders/shadowDynamicPointStencil.fs b/gfx/gl/shaders/shadowDynamicPointStencil.fs
index e612691..fe91b07 100644
--- a/gfx/gl/shaders/shadowDynamicPointStencil.fs
+++ b/gfx/gl/shaders/shadowDynamicPointStencil.fs
@@ -12,5 +12,5 @@ main()
if (stDepth >= 1) {
discard;
}
- gl_FragDepth = gl_FragCoord.z + (stDepth * scale.z);
+ gl_FragDepth = gl_FragCoord.z + ((stDepth - 0.5) * scale.z);
}