X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=mix_effect.cpp;h=9e27b1243dfd8dc61caf9cb575ce459aa495a392;hp=6e279cbebaac173979738b9a56bab1fd4da9b26a;hb=97f04cf3de39851ba0808aace31866afa9a9f500;hpb=85f9719bf3519b1f1942738d11601584f5d38725 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