mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-12 00:01:43 +00:00
731236ee07
Sprites and particles don't seem to be getting fogged correctly, but bsp and alias models are working.
28 lines
404 B
GLSL
28 lines
404 B
GLSL
//precision mediump float;
|
|
uniform sampler2D texture;
|
|
uniform vec4 fog;
|
|
|
|
varying vec4 color;
|
|
varying vec2 st;
|
|
|
|
float
|
|
sqr (float x)
|
|
{
|
|
return x * x;
|
|
}
|
|
|
|
vec4
|
|
fogBlend (vec4 color)
|
|
{
|
|
float f;
|
|
vec4 fog_color = vec4 (fog.rgb, 1.0);
|
|
|
|
f = exp (-sqr (fog.a / gl_FragCoord.w));
|
|
return mix (fog_color, color, f);
|
|
}
|
|
|
|
void
|
|
main (void)
|
|
{
|
|
gl_FragColor = fogBlend (texture2D (texture, st) * color);
|
|
}
|