]> git.tdb.fi Git - libs/gl.git/blobdiff - source/effect.h
Check the flat qualifier from the correct member
[libs/gl.git] / source / effect.h
diff --git a/source/effect.h b/source/effect.h
deleted file mode 100644 (file)
index dfb3696..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-#ifndef MSP_GL_EFFECT_H_
-#define MSP_GL_EFFECT_H_
-
-#include <set>
-#include "renderable.h"
-
-namespace Msp {
-namespace GL {
-
-/**
-Effects are used to wrap other renderables and give them additional visual
-properties.
-*/
-class Effect: public Renderable
-{
-protected:
-       const Renderable &renderable;
-       std::set<Tag> enabled_passes;
-
-       Effect(const Renderable &);
-public:
-       virtual ~Effect() { }
-
-       void enable_for_pass(const Tag &);
-       void disable_for_pass(const Tag &);
-};
-
-} // namespace GL
-} // namespace Msp
-
-#endif