X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;ds=sidebyside;f=fft_pass_effect_test.cpp;h=eb4e37cf3c439addad6c8726b607a209dda0ef7c;hb=cfc161e0289c2169d4835c48751ff56b97355eb2;hp=6a6406c0a7fa67899e663c3f259828bce66f4201;hpb=c4f0d4e876a8177db5738596f22349e030e0a1dc;p=movit diff --git a/fft_pass_effect_test.cpp b/fft_pass_effect_test.cpp index 6a6406c..eb4e37c 100644 --- a/fft_pass_effect_test.cpp +++ b/fft_pass_effect_test.cpp @@ -1,14 +1,19 @@ // Unit tests for FFTPassEffect. #include +#include +#include #include "effect_chain.h" +#include "fft_pass_effect.h" +#include "glew.h" #include "gtest/gtest.h" #include "image_format.h" -#include "fft_pass_effect.h" #include "multiply_effect.h" #include "test_util.h" +namespace movit { + namespace { // Generate a random number uniformly distributed between [-1.0, 1.0]. @@ -330,3 +335,5 @@ TEST(FFTPassEffectTest, BigFFTAccuracy) { expect_equal(in, out2, 4, fft_size, max_error, rms_limit); } } + +} // namespace movit