X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=lift_gamma_gain_effect_test.cpp;h=1be2847a91ee3d0c5260333461462a5452f3494a;hp=a9e866d28c73985572616be4eae3c80725e88cce;hb=34776d3ed2565ee834405e575bf3bfc7f7933e36;hpb=9651a4eaae012cdc49c1aa38197861e04f62e91e diff --git a/lift_gamma_gain_effect_test.cpp b/lift_gamma_gain_effect_test.cpp index a9e866d..1be2847 100644 --- a/lift_gamma_gain_effect_test.cpp +++ b/lift_gamma_gain_effect_test.cpp @@ -1,6 +1,6 @@ // Unit tests for LiftGammaGainEffect. -#include +#include #include "effect_chain.h" #include "gtest/gtest.h" @@ -8,6 +8,8 @@ #include "lift_gamma_gain_effect.h" #include "test_util.h" +namespace movit { + TEST(LiftGammaGainEffectTest, DefaultIsNoop) { float data[] = { 0.0f, 0.0f, 0.0f, 1.0f, @@ -116,3 +118,5 @@ TEST(LiftGammaGainEffectTest, OutOfGamutColorsAreClipped) { expect_equal(expected_data, out_data, 4, 3); } + +} // namespace movit