]> git.sesse.net Git - movit/blobdiff - dither_effect.h
Add proper formats for sRGB without alpha.
[movit] / dither_effect.h
index a6c3c9cc856e895b8b662f753d1dba37e2697637..9818603c2a46f4a659628b68c03be5fed3f868ac 100644 (file)
 // like many LCD monitors do, but it starts to get very hairy, again, for limited gains.)
 // The dither is also deterministic across runs.
 
-#include <GL/glew.h>
+#include <epoxy/gl.h>
 #include <string>
 
 #include "effect.h"
 
+namespace movit {
+
 class DitherEffect : public Effect {
 private:
        // Should not be instantiated by end users;
@@ -77,4 +79,6 @@ private:
        GLuint texnum;
 };
 
+}  // namespace movit
+
 #endif // !defined(_MOVIT_DITHER_EFFECT_H)