X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fpipelinepass.h;h=e996de0c0a61c107500e14482977f277ede1561d;hb=7cbe8cc9893fe14f889321bd55e78b0ed6503e23;hp=0189c928e187ed0e0f1cd5dc01d0956b94f670e7;hpb=41339bc44d076569c680b2c24c75b30ef1254c1b;p=libs%2Fgl.git diff --git a/source/pipelinepass.h b/source/pipelinepass.h index 0189c928..e996de0c 100644 --- a/source/pipelinepass.h +++ b/source/pipelinepass.h @@ -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 - namespace Msp { namespace GL { -class Effect; +class Blend; +class DepthTest; class Lighting; struct PipelinePass { - std::vector effects; const Lighting *lighting; + const DepthTest *depth_test; + const Blend *blend; PipelinePass(); };