X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=mix_effect.h;h=fda06a6f9426426e9794637348c19f907a5894d5;hp=c6739653b398b7cd9791af5361d32197dd3d8499;hb=d4f00f9f47a0efaefabaf1efa1a0e214eeecca67;hpb=b10c546f579c7ccb5939161e61a71cd18a3f9bbd diff --git a/mix_effect.h b/mix_effect.h index c673965..fda06a6 100644 --- a/mix_effect.h +++ b/mix_effect.h @@ -1,9 +1,11 @@ -#ifndef _MIX_EFFECT_H -#define _MIX_EFFECT_H 1 +#ifndef _MOVIT_MIX_EFFECT_H +#define _MOVIT_MIX_EFFECT_H 1 // Combine two images: a*x + b*y. If you set a within [0,1] and b=1-a, // you will get a fade; if not, you may get surprising results (consider alpha). +#include + #include "effect.h" class MixEffect : public Effect { @@ -15,8 +17,12 @@ public: virtual bool needs_srgb_primaries() const { return false; } virtual unsigned num_inputs() const { return 2; } + // TODO: In the common case where a+b=1, it would be useful to be able to set + // alpha_handling() to INPUT_PREMULTIPLIED_ALPHA_KEEP_BLANK. However, right now + // we have no way of knowing that at instantiation time. + private: float strength_first, strength_second; }; -#endif // !defined(_MIX_EFFECT_H) +#endif // !defined(_MOVIT_MIX_EFFECT_H)