]> git.tdb.fi Git - libs/gl.git/blobdiff - source/pipelinepass.h
Lighting affecting the alpha value of a surface makes no sense
[libs/gl.git] / source / pipelinepass.h
index 9f7977294608384c07205ca2ccfae9ae1b15e313..e996de0c0a61c107500e14482977f277ede1561d 100644 (file)
@@ -1,25 +1,18 @@
-/* $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 Blend;
+class DepthTest;
 class Lighting;
 
 struct PipelinePass
 {
-       std::vector<Effect *> effects;
-       Lighting *lighting;
+       const Lighting *lighting;
+       const DepthTest *depth_test;
+       const Blend *blend;
 
        PipelinePass();
 };