]> git.tdb.fi Git - libs/gl.git/blobdiff - source/effects/postprocessor.h
Check the flat qualifier from the correct member
[libs/gl.git] / source / effects / postprocessor.h
index 06e03c3f7bee415d5df42a313763d7a15ac4c880..02d9d17a6f104d3672dc152849eced83f5ca9adf 100644 (file)
@@ -9,17 +9,20 @@ namespace GL {
 class Mesh;
 class Renderer;
 class Sampler;
-class Shader;
 class Texture2D;
 
 /**
-Base class for post-processing effects.  Post-processors receive the contents
-of the entire framebuffer as a texture and render it back, altering it in the
-process.
+Base class for post-processing effects.
+
+PostProcessors can be added to a Sequence.  They receive the contents of the
+entire framebuffer as a texture and render it back, altering it in the process.
 */
 class PostProcessor
 {
 public:
+       /**
+       Holds the parameters for a PostProcessor.  Used with SequenceTemplate.
+       */
        struct Template
        {
                class Loader: public Msp::DataFile::ObjectLoader<Template>
@@ -28,10 +31,9 @@ public:
                        Loader(Template &);
                };
 
-               unsigned size_divisor;
+               unsigned size_divisor = 1;
 
-               Template();
-               virtual ~Template() { }
+               virtual ~Template() = default;
 
                virtual PostProcessor *create(unsigned, unsigned) const = 0;
        };
@@ -41,7 +43,6 @@ protected:
 public:
        virtual ~PostProcessor() { }
 
-       /// Renders the effect.
        virtual void render(Renderer &, const Texture2D &, const Texture2D &) = 0;
 
        virtual void set_debug_name(const std::string &) = 0;