]> git.tdb.fi Git - libs/gl.git/blobdiff - source/render/simplescene.h
Check the flat qualifier from the correct member
[libs/gl.git] / source / render / simplescene.h
index ccca360a5c1275f44aedc897ed6f097dd38f68c0..174a9e2ea80e3cd6c7da982bf4672e88b58201b4 100644 (file)
@@ -8,7 +8,7 @@ namespace Msp {
 namespace GL {
 
 /**
-A simple yet efficient scene.  Rendering order is unspecified.
+A simple scene which renders its contents in an unspecified order.
 */
 class SimpleScene: public Scene
 {
@@ -16,7 +16,7 @@ public:
        using Scene::Loader;
 
 private:
-       std::vector<Renderable *> renderables;
+       std::vector<Renderable *> content;
 
 public:
        virtual void add(Renderable &);