]> git.sesse.net Git - movit/blobdiff - dither_effect_test.cpp
Move everything into “namespace movit”.
[movit] / dither_effect_test.cpp
index 6fd46dbf402feba053183e16790157602dd91277..8801aa0f94022697976462f44ef3fb2c84f139ac 100644 (file)
@@ -8,6 +8,8 @@
 #include "image_format.h"
 #include "test_util.h"
 
+namespace movit {
+
 TEST(DitherEffectTest, NoDitherOnExactValues) {
        const int size = 4;
 
@@ -55,3 +57,5 @@ TEST(DitherEffectTest, SinusoidBelowOneLevelComesThrough) {
 
        EXPECT_NEAR(amplitude, sum / (size * 255.0f), 1.1e-5);
 }
+
+}  // namespace movit