]> git.tdb.fi Git - libs/gl.git/blobdiff - source/pipelinepass.h
Use the hash function from mspcore
[libs/gl.git] / source / pipelinepass.h
index 7e824082d2bdaae412fdbac6b0ab09dc646c1f08..e996de0c0a61c107500e14482977f277ede1561d 100644 (file)
@@ -1,26 +1,15 @@
-/* $Id$
-
-This file is part of libmspgl
-Copyright © 2009-2010  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 Blend;
 class DepthTest;
-class Effect;
 class Lighting;
 
 struct PipelinePass
 {
-       std::vector<Effect *> effects;
        const Lighting *lighting;
        const DepthTest *depth_test;
        const Blend *blend;