summaryrefslogtreecommitdiff
path: root/client/shaders/shadow_shaders/pass1_fragment.glsl
blob: 2105def96059a409918629ddf026ff08ccc30d50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
uniform sampler2D ColorMapSampler;
varying vec4 tPos;

void main()
{
	vec4 col = texture2D(ColorMapSampler, gl_TexCoord[0].st);

	if (col.a < 0.70)
		discard;

	float depth = 0.5 + tPos.z * 0.5;
	gl_FragColor = vec4(depth, 0.0, 0.0, 1.0);
}