1 #ifndef MSP_GL_BLOOM_H_
2 #define MSP_GL_BLOOM_H_
4 #include "framebuffer.h"
6 #include "postprocessor.h"
10 #include "programdata.h"
16 The Bloom post-processing effect causes very bright areas of the image to bleed
17 into surrounding pixels. Commonly used together with HDR rendering.
19 The technique used is to gaussian blur the image and then blend the result with
20 the original image. With suitable parameters, this effect may also be used as
23 class Bloom: public PostProcessor
29 ProgramData blur_shdata_common;
30 ProgramData blur_shdata[2];
31 Program combine_shader;
32 ProgramData combine_shdata;
33 Texturing combine_texturing;
37 Bloom(unsigned, unsigned);
39 /** Sets the σ value of the gaussian blur. Values much larger than 4.0 are
40 likely to cause artifacts. */
41 void set_radius(float);
43 /** Sets the blend factor between original and blurred images. Larger
44 values mean more blurriness. */
45 void set_strength(float);
47 virtual void render(const Texture2D &, const Texture2D &);