]> git.sesse.net Git - movit/blobdiff - glow_effect_test.cpp
Fix some test breakage.
[movit] / glow_effect_test.cpp
index 4570d6f5ada16b9e151ed5ac21bda7c07e49bd12..174937be5fae6fb47f8c488a4dbef9bcf29bd606 100644 (file)
@@ -1,6 +1,6 @@
 // Unit tests for GlowEffect.
 
-#include <GL/glew.h>
+#include <epoxy/gl.h>
 #include <math.h>
 
 #include "effect_chain.h"
@@ -9,6 +9,8 @@
 #include "image_format.h"
 #include "test_util.h"
 
+namespace movit {
+
 TEST(GlowEffectTest, NoAmountDoesNothing) {
        const int size = 4;
 
@@ -108,3 +110,5 @@ TEST(GlowEffectTest, GlowsOntoZeroAlpha) {
 
        expect_equal(expected_data, out_data, 4, size);
 }
+
+}  // namespace movit