projects
/
movit
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Replace LAST_INPUT with INPUT.
[movit]
/
colorspace_conversion_effect.frag
diff --git
a/colorspace_conversion_effect.frag
b/colorspace_conversion_effect.frag
index
ea858fb
..
6ec8e55
100644
(file)
--- a/
colorspace_conversion_effect.frag
+++ b/
colorspace_conversion_effect.frag
@@
-2,7
+2,7
@@
// The matrix is computed on the host and baked into the shader at compile time.
vec4 FUNCNAME(vec2 tc) {
- vec4 x =
LAST_
INPUT(tc);
+ vec4 x = INPUT(tc);
x.rgb = PREFIX(conversion_matrix) * x.rgb;
return x;
}