]> git.sesse.net Git - movit/blob - mix_effect.frag
Have expect_equal() pinpoint the pixel with the largest error when that test fails.
[movit] / mix_effect.frag
1 vec4 FUNCNAME(vec2 tc) {
2         vec4 first = INPUT1(tc);
3         vec4 second = INPUT2(tc);
4         return vec4(PREFIX(strength_first)) * first + vec4(PREFIX(strength_second)) * second;
5 }