]> git.tdb.fi Git - libs/gl.git/blobdiff - source/effect.h
Add a Pipeline framework for constructing complex rendering sequences
[libs/gl.git] / source / effect.h
diff --git a/source/effect.h b/source/effect.h
new file mode 100644 (file)
index 0000000..9f49c81
--- /dev/null
@@ -0,0 +1,24 @@
+/* $Id$
+
+This file is part of libmspgl
+Copyright © 2009  Mikko Rasa, Mikkosoft Productions
+Distributed under the LGPL
+*/
+
+#ifndef MSP_GL_EFFECT_H_
+#define MSP_GL_EFFECT_H_
+
+namespace Msp {
+namespace GL {
+
+class Effect
+{
+public:
+       virtual void prepare() =0;
+       virtual void cleanup() =0;
+};
+
+} // namespace GL
+} // namespace Msp
+
+#endif