]> git.sesse.net Git - movit/blobdiff - identity.frag
Factorize the code to compute sampling points for bilinear sampling into a shared...
[movit] / identity.frag
index ca41262dd22bea72c7e578e6b4b75e00d7dca9ed..d9d7fc3b476ec87df56c35d3c88f8d72279f3154 100644 (file)
@@ -1,5 +1,5 @@
 // Identity transformation (sometimes useful to do nothing).
 vec4 FUNCNAME(vec2 tc)
 {
 // Identity transformation (sometimes useful to do nothing).
 vec4 FUNCNAME(vec2 tc)
 {
-       return LAST_INPUT(tc);
+       return INPUT(tc);
 }
 }