]> git.sesse.net Git - movit/blobdiff - glow_effect.h
Merge branch 'master' into epoxy
[movit] / glow_effect.h
index 91106e03b08927ab3498d784f3611b05e36aafa8..2a2af16dd3abbd7d1bded97de0aaad88475b63bf 100644 (file)
@@ -4,12 +4,14 @@
 // Glow: Cut out the highlights of the image (everything above a certain threshold),
 // blur them, and overlay them onto the original image.
 
-#include <GL/glew.h>
+#include <epoxy/gl.h>
 #include <assert.h>
 #include <string>
 
 #include "effect.h"
 
+namespace movit {
+
 class BlurEffect;
 class EffectChain;
 class HighlightCutoffEffect;
@@ -55,4 +57,6 @@ private:
        float cutoff;
 };
 
+}  // namespace movit
+
 #endif // !defined(_MOVIT_GLOW_EFFECT_H)