]> git.sesse.net Git - movit/blob - white_balance_effect.frag
Remove the check for movit_shader_rounding_supported, as we now demand 1.30 unconditi...
[movit] / white_balance_effect.frag
1 // Implicit uniforms:
2 // uniform mat3 PREFIX(correction_matrix);
3
4 vec4 FUNCNAME(vec2 tc) {
5         vec4 ret = INPUT(tc);
6         ret.rgb = PREFIX(correction_matrix) * ret.rgb;
7         return ret;
8 }