X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=fft_pass_effect_test.cpp;h=01527b8b804e01901e38e8ae63e52ebb29ed4940;hp=1d6693c09ac694d39076a9ef296efa231826bc62;hb=7f1c8bb8b3ce08b94054f0a8990e5b8225d36036;hpb=9651a4eaae012cdc49c1aa38197861e04f62e91e diff --git a/fft_pass_effect_test.cpp b/fft_pass_effect_test.cpp index 1d6693c..01527b8 100644 --- a/fft_pass_effect_test.cpp +++ b/fft_pass_effect_test.cpp @@ -3,15 +3,17 @@ #include #include #include +#include +#include #include "effect_chain.h" #include "fft_pass_effect.h" -#include "glew.h" -#include "gtest/gtest.h" #include "image_format.h" #include "multiply_effect.h" #include "test_util.h" +namespace movit { + namespace { // Generate a random number uniformly distributed between [-1.0, 1.0]. @@ -333,3 +335,5 @@ TEST(FFTPassEffectTest, BigFFTAccuracy) { expect_equal(in, out2, 4, fft_size, max_error, rms_limit); } } + +} // namespace movit