]> git.sesse.net Git - movit/blobdiff - saturation_effect.cpp
Hard-assert on something that has bitten me too many times now.
[movit] / saturation_effect.cpp
index 637da862ad297889fc2051644041e26304fbf2d0..a3f91a01817fa7ff2008b2bf96f5153f9cff284e 100644 (file)
@@ -1,10 +1,10 @@
-#define GL_GLEXT_PROTOTYPES 1
-
 #include "saturation_effect.h"
 #include "util.h"
 
 using namespace std;
 
+namespace movit {
+
 SaturationEffect::SaturationEffect()
        : saturation(1.0f)
 {
@@ -15,3 +15,5 @@ string SaturationEffect::output_fragment_shader()
 {
        return read_file("saturation_effect.frag");
 }
+
+}  // namespace movit