]> git.tdb.fi Git - libs/gl.git/blobdiff - source/pipelinepass.h
Drop Id tags and copyright notices from files
[libs/gl.git] / source / pipelinepass.h
index 9f7977294608384c07205ca2ccfae9ae1b15e313..087e653e5279ec998391b77b9c1f4fabbb088a8b 100644 (file)
@@ -1,10 +1,3 @@
-/* $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_
 
@@ -13,13 +6,17 @@ Distributed under the LGPL
 namespace Msp {
 namespace GL {
 
+class Blend;
+class DepthTest;
 class Effect;
 class Lighting;
 
 struct PipelinePass
 {
        std::vector<Effect *> effects;
-       Lighting *lighting;
+       const Lighting *lighting;
+       const DepthTest *depth_test;
+       const Blend *blend;
 
        PipelinePass();
 };