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