X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fpipelinepass.h;h=e996de0c0a61c107500e14482977f277ede1561d;hb=df435a8983a5c1d1c327a4a2a19836a13aff267b;hp=9f7977294608384c07205ca2ccfae9ae1b15e313;hpb=e17243fb2421977cb781361828b77718e2cf8d48;p=libs%2Fgl.git diff --git a/source/pipelinepass.h b/source/pipelinepass.h index 9f797729..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; - Lighting *lighting; + const Lighting *lighting; + const DepthTest *depth_test; + const Blend *blend; PipelinePass(); };