]> git.tdb.fi Git - libs/gl.git/blob - source/pipelinepass.h
Add a Pipeline framework for constructing complex rendering sequences
[libs/gl.git] / source / pipelinepass.h
1 /* $Id$
2
3 This file is part of libmspgl
4 Copyright © 2009  Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
6 */
7
8 #ifndef MSP_GL_PIPELINEPASS_H_
9 #define MSP_GL_PIPELINEPASS_H_
10
11 #include <vector>
12
13 namespace Msp {
14 namespace GL {
15
16 class Effect;
17 class Lighting;
18
19 struct PipelinePass
20 {
21         std::vector<Effect *> effects;
22         Lighting *lighting;
23
24         PipelinePass();
25 };
26
27 } // namespace GL
28 } // namespace Msp
29
30 #endif