projects
/
movit
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Make the example program actually try to use the effect chain.
[movit]
/
header.glsl
1
uniform sampler2D input_tex;
2
varying vec2 tc;
3
4
vec4 read_input(vec2 tc)
5
{
6
return texture2D(input_tex, tc.st);
7
}
8
9
#define LAST_INPUT read_input