]> git.sesse.net Git - movit/blobdiff - footer.vert
Do not send uninitialized memory as a texture.
[movit] / footer.vert
index 916eea9a90f2ebdd81772bc2cbf0e71098a68e21..e4629c6fe324ecc8b72d5067cd7d30151baae782 100644 (file)
@@ -2,6 +2,6 @@ varying vec2 tc;
 
 void main()
 {
-       tc = LAST_INPUT(tc);
+       tc = LAST_INPUT();
         gl_Position = ftransform();
 }