X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=mirror_effect.h;h=a33921be6b8172365828790531dff9d6e4e15d81;hp=0e8dd7bff1824ae63a1efb624beb37e864458a43;hb=2682dbe4264329f3e8a15f8b29c95be4c855bbef;hpb=f99ad333a7acbb6c8c995dbb036484ae8940c490 diff --git a/mirror_effect.h b/mirror_effect.h index 0e8dd7b..a33921b 100644 --- a/mirror_effect.h +++ b/mirror_effect.h @@ -3,6 +3,8 @@ // A simple horizontal mirroring. +#include + #include "effect.h" class MirrorEffect : public Effect { @@ -13,6 +15,7 @@ public: virtual bool needs_linear_light() const { return false; } virtual bool needs_srgb_primaries() const { return false; } + virtual AlphaHandling alpha_handling() const { return DONT_CARE_ALPHA_TYPE; } }; #endif // !defined(_MIRROR_EFFECT_H)