]> git.tdb.fi Git - libs/gl.git/blobdiff - source/pipelinepass.h
Add a Pipeline framework for constructing complex rendering sequences
[libs/gl.git] / source / pipelinepass.h
diff --git a/source/pipelinepass.h b/source/pipelinepass.h
new file mode 100644 (file)
index 0000000..9f79772
--- /dev/null
@@ -0,0 +1,30 @@
+/* $Id$
+
+This file is part of libmspgl
+Copyright © 2009  Mikko Rasa, Mikkosoft Productions
+Distributed under the LGPL
+*/
+
+#ifndef MSP_GL_PIPELINEPASS_H_
+#define MSP_GL_PIPELINEPASS_H_
+
+#include <vector>
+
+namespace Msp {
+namespace GL {
+
+class Effect;
+class Lighting;
+
+struct PipelinePass
+{
+       std::vector<Effect *> effects;
+       Lighting *lighting;
+
+       PipelinePass();
+};
+
+} // namespace GL
+} // namespace Msp
+
+#endif