X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fpipelinepass.h;h=7e824082d2bdaae412fdbac6b0ab09dc646c1f08;hb=12ac9bec8e03029c1042fd7732a2cfc04c9a9584;hp=9f7977294608384c07205ca2ccfae9ae1b15e313;hpb=e17243fb2421977cb781361828b77718e2cf8d48;p=libs%2Fgl.git diff --git a/source/pipelinepass.h b/source/pipelinepass.h index 9f797729..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,13 +13,17 @@ Distributed under the LGPL namespace Msp { namespace GL { +class Blend; +class DepthTest; class Effect; class Lighting; struct PipelinePass { std::vector effects; - Lighting *lighting; + const Lighting *lighting; + const DepthTest *depth_test; + const Blend *blend; PipelinePass(); };