X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Frender%2Fsequence.h;h=f862bbcb55914b229ff1d4d2e756e1fc0809e6c8;hb=73590a7fcd931261d2b9c26fd3a0e53a37aa6e2c;hp=be8ed30621a08403842616c11d09fbab877359d3;hpb=2b2676392aff2eb6b38c3e463cc67f4d67a4ef8b;p=libs%2Fgl.git diff --git a/source/render/sequence.h b/source/render/sequence.h index be8ed306..f862bbcb 100644 --- a/source/render/sequence.h +++ b/source/render/sequence.h @@ -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 steps; - const Camera *camera; std::vector 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 &);