projects
/
movit
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Fix a confusion in the vertex shader chaining.
[movit]
/
identity.vert
diff --git
a/identity.vert
b/identity.vert
index
10e19e7
..
77b6ff8
100644
(file)
--- a/
identity.vert
+++ b/
identity.vert
@@
-1,5
+1,5
@@
// Identity transformation (sometimes useful to do nothing).
-vec2 FUNCNAME(
vec2 tc
)
+vec2 FUNCNAME()
{
- return LAST_INPUT(
tc
);
+ return LAST_INPUT();
}