]> git.sesse.net Git - movit/blob - downscale2x.frag
Remove some unused members in tests. Found by Clang 7.
[movit] / downscale2x.frag
1 // Used only for testing.
2
3 // Implicit uniforms:
4 // uniform vec2 PREFIX(offset);
5
6 vec4 FUNCNAME(vec2 tc)
7 {
8         return INPUT(tc * 2.0 + PREFIX(offset));
9 //      vec2 z = tc * 2.0 + PREFIX(offset);
10 //      return vec4(z.y, 0.0f, 0.0f, 1.0f);
11 }