]> git.sesse.net Git - movit/blob - lift_gamma_gain_effect.frag
Revert all the changes in demo.cpp that were never supposed to be there in the last...
[movit] / lift_gamma_gain_effect.frag
1 // These are calculated in the host code to save some arithmetic.
2 uniform vec3 PREFIX(gain_pow_inv_gamma);  // gain^(1/gamma).
3 uniform vec3 PREFIX(inv_gamma_22);  // 2.2 / gamma.
4
5 vec4 FUNCNAME(vec2 tc) {
6         vec4 x = INPUT(tc);
7
8         x.rgb /= x.aaa;
9         x.rgb = pow(x.rgb, vec3(1.0/2.2));
10         x.rgb += PREFIX(lift) * (vec3(1) - x.rgb);
11         x.rgb = pow(x.rgb, PREFIX(inv_gamma_22));
12         x.rgb *= PREFIX(gain_pow_inv_gamma);
13         x.rgb *= x.aaa;
14
15         return x;
16 }