]> git.tdb.fi Git - libs/gl.git/blob - source/pipelinepass.h
7e824082d2bdaae412fdbac6b0ab09dc646c1f08
[libs/gl.git] / source / pipelinepass.h
1 /* $Id$
2
3 This file is part of libmspgl
4 Copyright © 2009-2010  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 Blend;
17 class DepthTest;
18 class Effect;
19 class Lighting;
20
21 struct PipelinePass
22 {
23         std::vector<Effect *> effects;
24         const Lighting *lighting;
25         const DepthTest *depth_test;
26         const Blend *blend;
27
28         PipelinePass();
29 };
30
31 } // namespace GL
32 } // namespace Msp
33
34 #endif