X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=sidebyside;f=source%2Fpipelinepass.h;h=087e653e5279ec998391b77b9c1f4fabbb088a8b;hb=f14435e58bfa0fa697a06ba9a454bb30cd37d9d8;hp=9f7977294608384c07205ca2ccfae9ae1b15e313;hpb=e17243fb2421977cb781361828b77718e2cf8d48;p=libs%2Fgl.git diff --git a/source/pipelinepass.h b/source/pipelinepass.h index 9f797729..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,13 +6,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(); };