]> git.sesse.net Git - movit/blobdiff - blur_effect_test.cpp
Move everything into “namespace movit”.
[movit] / blur_effect_test.cpp
index 4114bcbc45bff018a271f8d360b388bbde85bca6..1ef479ec478d8a9be52ac3f70d87a46be761bd62 100644 (file)
@@ -9,6 +9,8 @@
 #include "image_format.h"
 #include "test_util.h"
 
+namespace movit {
+
 TEST(BlurEffectTest, IdentityTransformDoesNothing) {
        const int size = 4;
 
@@ -99,3 +101,5 @@ TEST(BlurEffectTest, BlurTwoDotsLargeRadius) {
 
        expect_equal(expected_data, out_data, size, size, 0.1f, 1e-3);
 }
+
+}  // namespace movit