X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=diffusion_effect.h;h=64d743d12eb923bd409b24ddd0d5de508ff5458c;hp=f8ed77c35af528cdb71e896e80522dfa3c270ae8;hb=46cec0349282daa06df45279fb5d4e49add461ae;hpb=f99ad333a7acbb6c8c995dbb036484ae8940c490 diff --git a/diffusion_effect.h b/diffusion_effect.h index f8ed77c..64d743d 100644 --- a/diffusion_effect.h +++ b/diffusion_effect.h @@ -12,9 +12,15 @@ // where we first blur the picture, and then overlay it on the original // using the original as a matte. +#include +#include +#include + #include "effect.h" class BlurEffect; +class EffectChain; +class Node; class OverlayMatteEffect; class DiffusionEffect : public Effect { @@ -22,7 +28,7 @@ public: DiffusionEffect(); virtual std::string effect_type_id() const { return "DiffusionEffect"; } - virtual void add_self_to_effect_chain(EffectChain *chain, const std::vector &input); + virtual void rewrite_graph(EffectChain *graph, Node *self); virtual bool set_float(const std::string &key, float value); virtual std::string output_fragment_shader() { @@ -44,6 +50,7 @@ public: OverlayMatteEffect(); virtual std::string effect_type_id() const { return "OverlayMatteEffect"; } std::string output_fragment_shader(); + virtual AlphaHandling alpha_handling() const { return INPUT_PREMULTIPLIED_ALPHA_KEEP_BLANK; } unsigned num_inputs() const { return 2; }