X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=multiply_effect.h;h=92e98e30944ec61eedca44e75e27276cef26a609;hp=8de261aebaff82465b6e9c3671abb76b30b1db45;hb=641053e9fc86b2166e361a983075febc3bb69acd;hpb=e33b485dcb7bdbe056f6511945d5eb118c085d65 diff --git a/multiply_effect.h b/multiply_effect.h index 8de261a..92e98e3 100644 --- a/multiply_effect.h +++ b/multiply_effect.h @@ -6,11 +6,13 @@ // sending it through OverlayEffect, e.g. with R=G=B=A=0.3 to get 30% alpha // (remember, alpha is premultiplied). -#include +#include #include #include "effect.h" +namespace movit { + class MultiplyEffect : public Effect { public: MultiplyEffect(); @@ -21,4 +23,6 @@ private: RGBATuple factor; }; +} // namespace movit + #endif // !defined(_MOVIT_MULTIPLY_EFFECT_H)