]> git.sesse.net Git - movit/blobdiff - effect.cpp
Release Movit 1.1.1.
[movit] / effect.cpp
index 93ba41a09bef116324cb956d473d6c3cac8e2a23..fb66514a290d1cb780c6a87b2fae4b97a8d9627f 100644 (file)
@@ -1,4 +1,4 @@
-#include <GL/glew.h>
+#include <epoxy/gl.h>
 #include <assert.h>
 #include <stdio.h>
 #include <string.h>
@@ -9,6 +9,8 @@
 
 using namespace std;
 
+namespace movit {
+
 bool Effect::set_int(const string &key, int value)
 {
        if (params_int.count(key) == 0) {
@@ -145,3 +147,5 @@ void Effect::set_gl_state(GLuint glsl_program_num, const string& prefix, unsigne
 }
 
 void Effect::clear_gl_state() {}
+
+}  // namespace movit