X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=mix_effect.cpp;h=9e27b1243dfd8dc61caf9cb575ce459aa495a392;hb=6f1efa8348a90a393187c12d70fd10d81bbd2c99;hp=6e279cbebaac173979738b9a56bab1fd4da9b26a;hpb=85f9719bf3519b1f1942738d11601584f5d38725;p=movit diff --git a/mix_effect.cpp b/mix_effect.cpp index 6e279cb..9e27b12 100644 --- a/mix_effect.cpp +++ b/mix_effect.cpp @@ -3,6 +3,8 @@ using namespace std; +namespace movit { + MixEffect::MixEffect() : strength_first(0.5f), strength_second(0.5f) { @@ -14,3 +16,5 @@ string MixEffect::output_fragment_shader() { return read_file("mix_effect.frag"); } + +} // namespace movit