X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fpipelinepass.h;h=7e824082d2bdaae412fdbac6b0ab09dc646c1f08;hb=5172d32d67595ea0b70184fadcfcb8e023cccbc8;hp=0189c928e187ed0e0f1cd5dc01d0956b94f670e7;hpb=41339bc44d076569c680b2c24c75b30ef1254c1b;p=libs%2Fgl.git diff --git a/source/pipelinepass.h b/source/pipelinepass.h index 0189c928..7e824082 100644 --- a/source/pipelinepass.h +++ b/source/pipelinepass.h @@ -1,7 +1,7 @@ /* $Id$ This file is part of libmspgl -Copyright © 2009 Mikko Rasa, Mikkosoft Productions +Copyright © 2009-2010 Mikko Rasa, Mikkosoft Productions Distributed under the LGPL */ @@ -13,6 +13,8 @@ Distributed under the LGPL namespace Msp { namespace GL { +class Blend; +class DepthTest; class Effect; class Lighting; @@ -20,6 +22,8 @@ struct PipelinePass { std::vector effects; const Lighting *lighting; + const DepthTest *depth_test; + const Blend *blend; PipelinePass(); };