X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fbuilders%2Fsequencetemplate.h;h=c49b2d43dfa95c8ea30a56c521863430f4332348;hp=9de2082d9ab68bdba42b112da51e1e460fa6fd20;hb=5bb193f930fb8738d099d630c4d625d82c1215b5;hpb=e9a898f315b5d1396f196d785913a283c30940f2 diff --git a/source/builders/sequencetemplate.h b/source/builders/sequencetemplate.h index 9de2082d..c49b2d43 100644 --- a/source/builders/sequencetemplate.h +++ b/source/builders/sequencetemplate.h @@ -8,7 +8,7 @@ #include "blend.h" #include "depthtest.h" #include "postprocessor.h" -#include "predicate.h" +#include "resources.h" #include "stenciltest.h" namespace Msp { @@ -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 &); @@ -109,6 +110,17 @@ public: }; 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; @@ -117,6 +129,10 @@ private: unsigned max_multisample; std::vector steps; std::vector postprocessors; + bool clear_enabled; + std::vector clear_colors; + float clear_depth; + int clear_stencil; public: SequenceTemplate(); @@ -128,6 +144,10 @@ 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; } + 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 &);