X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fbuilders%2Fsequencetemplate.h;h=660a043297bb2f8046c283bf6954ae538d620f09;hp=9de2082d9ab68bdba42b112da51e1e460fa6fd20;hb=ff8a8bfa114a690b7b25d9503bb5ed811d6aeca9;hpb=d4e380914f02800b7d915a8748ac9ccd7029bc3b diff --git a/source/builders/sequencetemplate.h b/source/builders/sequencetemplate.h index 9de2082d..660a0432 100644 --- a/source/builders/sequencetemplate.h +++ b/source/builders/sequencetemplate.h @@ -54,6 +54,7 @@ public: Loader(SequenceTemplate &, Collection &); virtual void postprocessor_loaded(); + void clear(); void multisample(unsigned); void multisample_range(unsigned, unsigned); void postprocessor(const std::string &); @@ -117,6 +118,7 @@ private: unsigned max_multisample; std::vector steps; std::vector postprocessors; + bool clear_enabled; public: SequenceTemplate(); @@ -128,6 +130,7 @@ public: unsigned get_maximum_multisample() const { return max_multisample; } const std::vector &get_steps() const { return steps; } const std::vector &get_postprocessors() const { return postprocessors; } + bool is_clear_enabled() const { return clear_enabled; } template static void register_postprocessor(const std::string &);