X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fbuilders%2Fsequencetemplate.h;h=81a130ef40a04947ceeb1c4e22b143671878890c;hp=061fdfc39928f1b4ce8e2634ffe3e1d933ec1086;hb=006bdb4f8660098fc524dcca80b24c943c65b249;hpb=2b2676392aff2eb6b38c3e463cc67f4d67a4ef8b diff --git a/source/builders/sequencetemplate.h b/source/builders/sequencetemplate.h index 061fdfc3..81a130ef 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 &); @@ -108,9 +109,18 @@ public: PostProcessor(GL::PostProcessor::Template * = 0); }; - typedef std::vector PostProcessorArray; - private: + class ClearLoader: public DataFile::ObjectLoader + { + public: + ClearLoader(SequenceTemplate &); + + private: + void color(float, float, float, float); + void depth(float); + void stencil(int); + }; + typedef TypeRegistry PostProcessorRegistry; bool hdr; @@ -118,7 +128,11 @@ private: unsigned required_multisample; unsigned max_multisample; std::vector steps; - PostProcessorArray postprocessors; + std::vector postprocessors; + bool clear_enabled; + std::vector clear_colors; + float clear_depth; + int clear_stencil; public: SequenceTemplate(); @@ -129,7 +143,11 @@ public: unsigned get_required_multisample() const { return required_multisample; } unsigned get_maximum_multisample() const { return max_multisample; } const std::vector &get_steps() const { return steps; } - const PostProcessorArray &get_postprocessors() const { return postprocessors; } + const std::vector &get_postprocessors() const { return postprocessors; } + bool is_clear_enabled() const { return clear_enabled; } + const std::vector &get_clear_colors() const { return clear_colors; } + float get_clear_depth() const { return clear_depth; } + int get_clear_stencil() const { return clear_stencil; } template static void register_postprocessor(const std::string &);