X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=sidebyside;f=source%2Feffect.h;h=dfb369614c28c2388b1dcdd249e20e4d331224ec;hb=f48b68626a98c4a0b8991764d174eb57895e805f;hp=2f9c56d2572f2703723044c25e058df995b7fec8;hpb=f14435e58bfa0fa697a06ba9a454bb30cd37d9d8;p=libs%2Fgl.git diff --git a/source/effect.h b/source/effect.h index 2f9c56d2..dfb36961 100644 --- a/source/effect.h +++ b/source/effect.h @@ -1,16 +1,28 @@ #ifndef MSP_GL_EFFECT_H_ #define MSP_GL_EFFECT_H_ +#include +#include "renderable.h" + namespace Msp { namespace GL { -class Effect +/** +Effects are used to wrap other renderables and give them additional visual +properties. +*/ +class Effect: public Renderable { +protected: + const Renderable &renderable; + std::set enabled_passes; + + Effect(const Renderable &); public: virtual ~Effect() { } - virtual void prepare() =0; - virtual void cleanup() =0; + void enable_for_pass(const Tag &); + void disable_for_pass(const Tag &); }; } // namespace GL