X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=glow_effect.h;h=2a2af16dd3abbd7d1bded97de0aaad88475b63bf;hp=abadb84a4cb332a10d45216d73a2fe6bfa2edc6c;hb=15daf781e6ce00ec37ca806a16e490d59dcb4e24;hpb=7af4d1b54ba141fdb74cd13ddc6110708855d157 diff --git a/glow_effect.h b/glow_effect.h index abadb84..2a2af16 100644 --- a/glow_effect.h +++ b/glow_effect.h @@ -1,14 +1,22 @@ -#ifndef _GLOW_EFFECT_H -#define _GLOW_EFFECT_H 1 +#ifndef _MOVIT_GLOW_EFFECT_H +#define _MOVIT_GLOW_EFFECT_H 1 // Glow: Cut out the highlights of the image (everything above a certain threshold), // blur them, and overlay them onto the original image. +#include +#include +#include + #include "effect.h" +namespace movit { + class BlurEffect; -class MixEffect; +class EffectChain; class HighlightCutoffEffect; +class MixEffect; +class Node; class GlowEffect : public Effect { public: @@ -49,4 +57,6 @@ private: float cutoff; }; -#endif // !defined(_GLOW_EFFECT_H) +} // namespace movit + +#endif // !defined(_MOVIT_GLOW_EFFECT_H)