1 #ifndef _MOVIT_GLOW_EFFECT_H
2 #define _MOVIT_GLOW_EFFECT_H 1
4 // Glow: Cut out the highlights of the image (everything above a certain threshold),
5 // blur them, and overlay them onto the original image.
17 class HighlightCutoffEffect;
21 class GlowEffect : public Effect {
24 virtual std::string effect_type_id() const { return "GlowEffect"; }
26 virtual bool needs_srgb_primaries() const { return false; }
28 virtual void rewrite_graph(EffectChain *graph, Node *self);
29 virtual bool set_float(const std::string &key, float value);
31 virtual std::string output_fragment_shader() {
34 virtual void set_gl_state(GLuint glsl_program_num, const std::string &prefix, unsigned *sampler_num) {
40 HighlightCutoffEffect *cutoff;
44 // An effect that cuts out only the highlights of an image;
45 // anything at the cutoff or below is set to 0.0, and then all other pixels
46 // get the cutoff subtracted. Used only as part of GlowEffect.
48 class HighlightCutoffEffect : public Effect {
50 HighlightCutoffEffect();
51 virtual std::string effect_type_id() const { return "HighlightCutoffEffect"; }
52 std::string output_fragment_shader();
54 virtual AlphaHandling alpha_handling() const { return INPUT_PREMULTIPLIED_ALPHA_KEEP_BLANK; }
55 virtual bool one_to_one_sampling() const { return true; }
63 #endif // !defined(_MOVIT_GLOW_EFFECT_H)