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