]> git.sesse.net Git - movit/blobdiff - mix_effect_test.cpp
Reduce the amount of arithmetic in the BlurEffect shader a bit.
[movit] / mix_effect_test.cpp
index babb76630dd185cdea4613ff8fc93dc581666d54..8432f1e1a96b7c6145e991cf732b3b50500323eb 100644 (file)
@@ -9,6 +9,8 @@
 #include "mix_effect.h"
 #include "test_util.h"
 
+namespace movit {
+
 TEST(MixEffectTest, FiftyFiftyMix) {
        float data_a[] = {
                0.0f, 0.25f,
@@ -138,3 +140,5 @@ TEST(MixEffectTest, MixesLinearlyDespitesRGBInputsAndOutputs) {
 
        expect_equal(expected_data, out_data, 2, 2);
 }
+
+}  // namespace movit