]> git.tdb.fi Git - libs/gl.git/blobdiff - source/render/sequence.h
Use a vector instead of a list for Sequence's steps
[libs/gl.git] / source / render / sequence.h
index 97d376d112100e68903c23dce25bfae96977253c..11f22a76f9326cbf76c9868eb83157954261e2cd 100644 (file)
@@ -74,9 +74,7 @@ private:
                Slot(Renderable *);
        };
 
-       typedef std::list<Step> StepList;
-
-       StepList steps;
+       std::vector<Step> steps;
        const Camera *camera;
        std::vector<Slot> renderables;
        std::vector<RefPtr<PostProcessor> > postproc;