X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=glow_effect_test.cpp;h=174937be5fae6fb47f8c488a4dbef9bcf29bd606;hp=77c9d12db75b17f3b3895ccb46ffcf7cf1d7ee2b;hb=refs%2Fheads%2Fepoxy;hpb=020ba675b7be6ceeb284be91039efc0dc0986227 diff --git a/glow_effect_test.cpp b/glow_effect_test.cpp index 77c9d12..174937b 100644 --- a/glow_effect_test.cpp +++ b/glow_effect_test.cpp @@ -1,10 +1,15 @@ // Unit tests for GlowEffect. +#include #include -#include "test_util.h" -#include "gtest/gtest.h" +#include "effect_chain.h" #include "glow_effect.h" +#include "gtest/gtest.h" +#include "image_format.h" +#include "test_util.h" + +namespace movit { TEST(GlowEffectTest, NoAmountDoesNothing) { const int size = 4; @@ -105,3 +110,5 @@ TEST(GlowEffectTest, GlowsOntoZeroAlpha) { expect_equal(expected_data, out_data, 4, size); } + +} // namespace movit