]> git.tdb.fi Git - libs/gl.git/blobdiff - source/render/scene.h
Check the flat qualifier from the correct member
[libs/gl.git] / source / render / scene.h
index 692dcd0dfc6c7ebf88e0e8c7f0b26d7c0aae4b33..e6115ae56541d9e9907818da03c780f45f80660d 100644 (file)
@@ -40,6 +40,7 @@ protected:
        private:
                Loader(Scene &, Collection &, ContentMap *);
 
+               void array(const std::string &);
                void object(const std::string &);
                void object_tagged(const std::string &, const std::string &);
                void scene(const std::string &);
@@ -59,24 +60,13 @@ public:
        };
 
 protected:
-       mutable Matrix culling_matrix;
-       mutable Vector4 frustum_edges[6];
-
        Scene() = default;
-private:
-       Scene(const Scene &);
-       Scene &operator=(const Scene &);
 public:
        virtual ~Scene() = default;
 
        virtual void add(Renderable &) = 0;
        virtual void remove(Renderable &) = 0;
 
-protected:
-       bool setup_frustum(const Renderer &) const;
-       bool frustum_cull(const Renderable &) const;
-
-public:
        template<typename T>
        static void register_type(const std::string &);
 private: