]> git.sesse.net Git - movit/blobdiff - white_balance_effect.h
Emulate glReadPixels of GL_ALPHA.
[movit] / white_balance_effect.h
index 5a8ecd548d6cf8efd4143feb3d457d97d76cf930..f438b91507a00b579d9eac697a3f619ac4527096 100644 (file)
@@ -3,11 +3,13 @@
 
 // Color correction in LMS color space.
 
-#include <GL/glew.h>
+#include <epoxy/gl.h>
 #include <string>
 
 #include "effect.h"
 
+namespace movit {
+
 class WhiteBalanceEffect : public Effect {
 public:
        WhiteBalanceEffect();
@@ -26,4 +28,6 @@ private:
        float output_color_temperature;
 };
 
+}  // namespace movit
+
 #endif // !defined(_MOVIT_WHITE_BALANCE_EFFECT_H)