]> git.tdb.fi Git - libs/gl.git/blob - source/pipelinepass.h
Use the hash function from mspcore
[libs/gl.git] / source / pipelinepass.h
1 #ifndef MSP_GL_PIPELINEPASS_H_
2 #define MSP_GL_PIPELINEPASS_H_
3
4 namespace Msp {
5 namespace GL {
6
7 class Blend;
8 class DepthTest;
9 class Lighting;
10
11 struct PipelinePass
12 {
13         const Lighting *lighting;
14         const DepthTest *depth_test;
15         const Blend *blend;
16
17         PipelinePass();
18 };
19
20 } // namespace GL
21 } // namespace Msp
22
23 #endif