]> git.sesse.net Git - movit/blobdiff - mirror_effect.frag
Move to 'using namespace std;' in all .cpp files.
[movit] / mirror_effect.frag
index 0d4206a79500a3efaac45ece56bada38518b2203..049194d63adbbb6d0d15040aabeb5dbc39b4b90e 100644 (file)
@@ -2,5 +2,5 @@
 vec4 FUNCNAME(vec2 tc)
 {
        tc.x = 1.0 - tc.x;
 vec4 FUNCNAME(vec2 tc)
 {
        tc.x = 1.0 - tc.x;
-       return LAST_INPUT(tc);
+       return INPUT(tc);
 }
 }