26 lines
525 B
GLSL
Raw Normal View History

uniform sampler2D tex;
uniform float fogmax;
uniform float startH;
uniform float endH;
uniform float start;
uniform float end;
uniform vec3 col;
out vec4 FragColor;
vec4 getPosFromUVDepth(vec3 uvDepth, mat4 InverseProjectionMatrix);
void main()
{
2014-06-03 20:28:42 +02:00
vec2 uv = gl_FragCoord.xy / screen;
2014-11-10 22:08:12 +01:00
float z = texture(tex, uv).x;
vec4 xpos = getPosFromUVDepth(vec3(uv, z), InverseProjectionMatrix);
2014-11-10 22:08:12 +01:00
float dist = length(xpos.xyz);
vec3 fog = col * (1. - exp(- fogmax * .01 * dist));
2014-11-10 22:08:12 +01:00
FragColor = vec4(fog, 1.);
}