X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=sidebyside;f=source%2Fpipeline.h;h=85179b7d5abfb4c4263c39176b53d6fd26a0a7a5;hb=df435a8983a5c1d1c327a4a2a19836a13aff267b;hp=f7f7e06ca198d84fe0a7b0aad583898f3eabd6cc;hpb=7f888de83aa5398fafaa7661547ee80395377b5c;p=libs%2Fgl.git diff --git a/source/pipeline.h b/source/pipeline.h index f7f7e06c..85179b7d 100644 --- a/source/pipeline.h +++ b/source/pipeline.h @@ -1,10 +1,3 @@ -/* $Id$ - -This file is part of libmspgl -Copyright © 2009-2011 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - #ifndef MSP_GL_PIPELINE_H_ #define MSP_GL_PIPELINE_H_ @@ -17,7 +10,6 @@ namespace Msp { namespace GL { class Camera; -class Effect; class Framebuffer; class PostProcessor; class Renderbuffer; @@ -40,7 +32,6 @@ private: std::vector pass_order; const Camera *camera; std::vector renderables; - std::vector effects; std::vector postproc; unsigned width; unsigned height; @@ -68,7 +59,6 @@ public: void add_renderable(const Renderable &); void add_renderable_for_pass(const Renderable &, const Tag &); void remove_renderable(const Renderable &); - void add_effect(Effect &); void add_postprocessor(PostProcessor &); virtual void render(Renderer &, const Tag &tag = Tag()) const;