]> git.sesse.net Git - movit/blobdiff - effect_chain_test.cpp
Switch from using GLEW to epoxy.
[movit] / effect_chain_test.cpp
index 25cd50a26839ba5942998d13b872f42ea13225ef..67b3dfc56aa7567678624884818242b40b1d5487 100644 (file)
@@ -2,7 +2,7 @@
 //
 // Note that this also contains the tests for some of the simpler effects.
 
-#include <GL/glew.h>
+#include <epoxy/gl.h>
 #include <assert.h>
 
 #include "effect.h"
@@ -19,6 +19,8 @@
 
 using namespace std;
 
+namespace movit {
+
 TEST(EffectChainTest, EmptyChain) {
        float data[] = {
                0.0f, 0.25f, 0.3f,
@@ -1019,3 +1021,5 @@ TEST(EffectChainTest, IdentityWithOwnPool) {
        // Reset the debug status again.
        movit_debug_level = MOVIT_DEBUG_OFF;
 }
+
+}  // namespace movit