]> git.tdb.fi Git - libs/gl.git/blobdiff - source/effects/bloom.h
Check the flat qualifier from the correct member
[libs/gl.git] / source / effects / bloom.h
index d6c9307cf8d43148818669f3007dbca223c8ec5d..30e98f7ee75f95a52e8f3e0ef7764daf380f3876 100644 (file)
@@ -11,12 +11,11 @@ namespace GL {
 class Program;
 
 /**
-The Bloom post-processing effect causes very bright areas of the image to bleed
-into surrounding pixels.  Commonly used together with HDR rendering.
+Bleeds very bright areas of the image into surrounding pixels to simulate
+optical imperfections in lenses.
 
-The technique used is to gaussian blur the image and then blend the result with
-the original image.  With suitable parameters, this effect may also be used as
-a blur filter.
+The input image is blurred with a gaussian kernel to simulate the Airy disc
+produced by a lens, then the blurred image is blended with the original.
 */
 class Bloom: public PostProcessor
 {
@@ -29,10 +28,8 @@ public:
                        Loader(Template &);
                };
 
-               float radius;
-               float strength;
-
-               Template();
+               float radius = 2.0f;
+               float strength = 0.2f;
 
                virtual Bloom *create(unsigned, unsigned) const;
        };