]> git.sesse.net Git - movit/blobdiff - gamma_expansion_effect.cpp
Start actually piecing together the GLSL shaders from the effect chain.
[movit] / gamma_expansion_effect.cpp
index cef1416ae5b8f7f5c7f9fc8c74641c11927412ef..1748ae93dcee81c7268f803c82a8dffb13c8495a 100644 (file)
@@ -1,7 +1,13 @@
 #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()
+{
+       return read_file("todo.glsl");
+}