X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Feffect.h;fp=source%2Feffect.h;h=dfb369614c28c2388b1dcdd249e20e4d331224ec;hp=f5c740ff5eb0d328a0125b8cb251cab4d4fe43af;hb=7cbe8cc9893fe14f889321bd55e78b0ed6503e23;hpb=9846a5c6e73b3a146084894a11550dbbf184a22a diff --git a/source/effect.h b/source/effect.h index f5c740ff..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