]> git.tdb.fi Git - libs/gl.git/blobdiff - source/render/sequence.h
Remove obsolete stuff from Sequence
[libs/gl.git] / source / render / sequence.h
index be8ed30621a08403842616c11d09fbab877359d3..f862bbcb55914b229ff1d4d2e756e1fc0809e6c8 100644 (file)
@@ -7,7 +7,6 @@
 #include "depthtest.h"
 #include "framebuffer.h"
 #include "renderable.h"
-#include "renderbuffer.h"
 #include "rendertarget.h"
 #include "stenciltest.h"
 #include "texture2d.h"
@@ -68,8 +67,6 @@ public:
                Renderable *get_renderable() const { return renderable; }
        };
 
-       DEPRECATED typedef Step Pass;
-
 private:
        struct PostProcStep
        {
@@ -80,7 +77,6 @@ private:
        };
 
        std::vector<Step> steps;
-       const Camera *camera;
        std::vector<PostProcStep> postproc;
        unsigned width;
        unsigned height;
@@ -119,8 +115,6 @@ public:
        Renderable multiple times. */
        Step &add_step(Tag, Renderable &);
 
-       DEPRECATED Step &add_pass(Tag t, Renderable &r) { return add_step(t, r); }
-
        /** Adds a postprocessor to the sequence. */
        void add_postprocessor(PostProcessor &);