]> git.tdb.fi Git - libs/gl.git/blobdiff - source/pipeline.h
Lighting affecting the alpha value of a surface makes no sense
[libs/gl.git] / source / pipeline.h
index f7f7e06ca198d84fe0a7b0aad583898f3eabd6cc..85179b7d5abfb4c4263c39176b53d6fd26a0a7a5 100644 (file)
@@ -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<Tag> pass_order;
        const Camera *camera;
        std::vector<Slot> renderables;
-       std::vector<Effect *> effects;
        std::vector<PostProcessor *> 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;