]> git.sesse.net Git - movit/blobdiff - gamma_expansion_effect.cpp
Make check_error() output the file as well as the line, now that we have several.
[movit] / gamma_expansion_effect.cpp
index dcd0cde6ded15b73209e3c42d8df16514920a6d4..1748ae93dcee81c7268f803c82a8dffb13c8495a 100644 (file)
@@ -1,7 +1,13 @@
-#include "gamma_expansion_effect.h"j
+#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");
+}