]> git.tdb.fi Git - libs/gl.git/blobdiff - source/render/occludedscene.h
Use constructor delegation instead of init functions when possible
[libs/gl.git] / source / render / occludedscene.h
index 056acb2e0d12b2e14f74fcbffcde37cee09f7674..d51b29b36c87def2ef0ed1e7c30544a0aabea148 100644 (file)
@@ -3,13 +3,17 @@
 
 #include <set>
 #include <vector>
-#include "mesh.h"
-#include "program.h"
+#include "blend.h"
+#include "depthtest.h"
+#include "query.h"
 #include "scene.h"
 
 namespace Msp {
 namespace GL {
 
+class Mesh;
+class Program;
+
 /**
 A scene that performs occlusion queries on renderables to skip those that are
 entirely occluded by others.
@@ -26,21 +30,22 @@ private:
                const Geometry::BoundingSphere<float, 3> *bounding_sphere;
                bool in_frustum;
                bool occluder;
-               unsigned query;
 
                OccludedRenderable();
        };
 
        const Mesh &bounding_mesh;
        const Program &bounding_shader;
+       Blend no_color_write;
+       DepthTest no_depth_write;
        std::set<Renderable *> renderables;
        float occluder_min_size;
+       mutable QueryPool queries;
        mutable std::vector<OccludedRenderable> occluded_cache;
        mutable bool cache_dirty;
 
 public:
        OccludedScene();
-       ~OccludedScene();
 
        virtual void add(Renderable &);
        virtual void remove(Renderable &);