2017-07-17 21:01:13 +00:00
|
|
|
extern float exposure=0.7;
|
2014-10-08 12:55:05 +00:00
|
|
|
extern float brightness = 1.0;
|
|
|
|
extern vec3 lumacomponents = vec3(1.0, 1.0, 1.0);
|
|
|
|
const vec3 lumcoeff = vec3(0.212671, 0.715160, 0.072169);
|
|
|
|
|
2017-07-17 21:01:13 +00:00
|
|
|
vec4 effect(vec4 vcolor, Image texture, vec2 texcoord, vec2 pixel_coords) {
|
2014-10-08 12:55:05 +00:00
|
|
|
vec4 input0 = Texel(texture, texcoord);
|
|
|
|
input0 *= (exp2(input0)*vec4(exposure));
|
|
|
|
vec4 lumacomponents = vec4(lumcoeff * lumacomponents, 0.0 );
|
|
|
|
float luminance = dot(input0,lumacomponents);
|
|
|
|
vec4 luma = vec4(luminance);
|
|
|
|
return vec4(luma.rgb * brightness, 1.0);
|
2017-07-17 21:01:13 +00:00
|
|
|
}
|