stk-code_catmod/data/shaders/logluminance.frag
vlj 8947242de4 Add proper tonemap, although disabled.
It currently generates way too much HDR.
2014-04-21 01:52:44 +02:00

14 lines
255 B
GLSL

uniform sampler2D tex;
in vec2 uv;
out vec4 FragColor;
float delta = .1;
void main()
{
vec3 weight = vec3(0.2125f, 0.7154f, 0.0721f);
vec3 col = texture(tex, uv).xyz;
float luma = dot(col, weight);
FragColor = vec4(log(luma + delta));
}