]> git.sesse.net Git - movit/blobdiff - identity.vert
Fix a confusion in the vertex shader chaining.
[movit] / identity.vert
index 10e19e7ec34fbf194a17e206a389bd59d51247a9..77b6ff856436ce2440889a2d5370b952d9486a72 100644 (file)
@@ -1,5 +1,5 @@
 // Identity transformation (sometimes useful to do nothing).
 // Identity transformation (sometimes useful to do nothing).
-vec2 FUNCNAME(vec2 tc)
+vec2 FUNCNAME()
 {
 {
-       return LAST_INPUT(tc);
+       return LAST_INPUT();
 }
 }