]> git.sesse.net Git - movit/blobdiff - flat_input.frag
Add proper formats for sRGB without alpha.
[movit] / flat_input.frag
index d7c04cc5718f7fc5f0d38923932a601751426f41..855d4fbbfe1c1b888ae52ee24112eb3868131996 100644 (file)
@@ -6,5 +6,17 @@ vec4 FUNCNAME(vec2 tc) {
        // we flip the y coordinate.
        tc.y = 1.0 - tc.y;
 
-       return texture2D(PREFIX(tex), tc);
+       vec4 pixel = tex2D(PREFIX(tex), tc);
+
+       // These two are #defined to 0 or 1 in flat_input.cpp.
+#if FIXUP_SWAP_RB
+       pixel.rb = pixel.br;
+#endif
+#if FIXUP_RED_TO_GRAYSCALE
+       pixel.gb = pixel.rr;
+#endif
+       return pixel;
 }
+
+#undef FIXUP_SWAP_RB
+#undef FIXUP_RED_TO_GRAYSCALE