]> git.sesse.net Git - movit/blob - overlay_effect.h
4c6d37a4fea6d9a95715031426eb7332fcf73346
[movit] / overlay_effect.h
1 #ifndef _OVERLAY_EFFECT_H
2 #define _OVERLAY_EFFECT_H 1
3
4 // Put one image on top of another, using alpha where appropriate.
5 // (If both images are the same aspect and the top image has alpha=1.0
6 // for all pixels, you will not see anything of the one on the bottom.)
7 //
8 // This is the “over” operation from Porter-Duff blending, also used
9 // when merging layers in e.g. GIMP or Photoshop.
10 //
11 // The first input is the bottom, and the second is the top.
12
13 #include "effect.h"
14
15 class OverlayEffect : public Effect {
16 public:
17         OverlayEffect();
18         virtual std::string effect_type_id() const { return "OverlayEffect"; }
19         std::string output_fragment_shader();
20
21         virtual bool needs_srgb_primaries() const { return false; }
22         virtual unsigned num_inputs() const { return 2; }
23
24         // Actually, if _either_ image has blank alpha, our output will have
25         // blank alpha, too (this only tells the framework that having _both_
26         // images with blank alpha would result in blank alpha).
27         // However, understanding that would require changes
28         // to EffectChain, so postpone that optimization for later.
29         virtual AlphaHandling alpha_handling() const { return INPUT_PREMULTIPLIED_ALPHA_KEEP_BLANK; }
30 };
31
32 #endif // !defined(_OVERLAY_EFFECT_H)