]> git.sesse.net Git - movit/blobdiff - colorspace_conversion_effect.frag
Replace LAST_INPUT with INPUT.
[movit] / colorspace_conversion_effect.frag
index ea858fb37885b6e979f180c2a7665143327ce743..6ec8e55d385b4e82e9fe020699cc52d12df315da 100644 (file)
@@ -2,7 +2,7 @@
 // The matrix is computed on the host and baked into the shader at compile time.
 
 vec4 FUNCNAME(vec2 tc) {
 // 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;
 }
        x.rgb = PREFIX(conversion_matrix) * x.rgb;
        return x;
 }