]> git.sesse.net Git - movit/blobdiff - gamma_expansion_effect.cpp
Implement gamma expansion from sRGB.
[movit] / gamma_expansion_effect.cpp
index cef1416ae5b8f7f5c7f9fc8c74641c11927412ef..1ecc897c00d73172e8205c48cb04a43a858eaea0 100644 (file)
@@ -1,7 +1,23 @@
+#include <assert.h>
+
 #include "gamma_expansion_effect.h"
+#include "util.h"
 
 GammaExpansionEffect::GammaExpansionEffect()
        : source_curve(GAMMA_LINEAR)
 {
        register_int("source_curve", (int *)&source_curve);
 }
+
+std::string GammaExpansionEffect::output_glsl()
+{
+       switch (source_curve) {
+       case GAMMA_sRGB:
+               return read_file("gamma_expansion_effect_srgb.glsl");
+       case GAMMA_REC_709:  // and GAMMA_REC_601
+               // Not implemented yet.
+               assert(false);
+       default:
+               assert(false);
+       }
+}