]> git.sesse.net Git - movit/blobdiff - colorspace_conversion_effect.glsl
Rename .glsl to .vert/.frag.
[movit] / colorspace_conversion_effect.glsl
diff --git a/colorspace_conversion_effect.glsl b/colorspace_conversion_effect.glsl
deleted file mode 100644 (file)
index ea858fb..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-// Colorspace conversion (needs to be done in linear space).
-// The matrix is computed on the host and baked into the shader at compile time.
-
-vec4 FUNCNAME(vec2 tc) {
-       vec4 x = LAST_INPUT(tc);
-       x.rgb = PREFIX(conversion_matrix) * x.rgb;
-       return x;
-}