X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=sidebyside;f=source%2Fpipelinepass.h;fp=source%2Fpipelinepass.h;h=9f7977294608384c07205ca2ccfae9ae1b15e313;hb=e17243fb2421977cb781361828b77718e2cf8d48;hp=0000000000000000000000000000000000000000;hpb=119d9819ac9e9a8d274d2410beffe54e470485a3;p=libs%2Fgl.git diff --git a/source/pipelinepass.h b/source/pipelinepass.h new file mode 100644 index 00000000..9f797729 --- /dev/null +++ b/source/pipelinepass.h @@ -0,0 +1,30 @@ +/* $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 Lighting; + +struct PipelinePass +{ + std::vector effects; + Lighting *lighting; + + PipelinePass(); +}; + +} // namespace GL +} // namespace Msp + +#endif