]> git.tdb.fi Git - libs/gl.git/blobdiff - source/core/clipping.h
Remove remaining deprecated things from the core classes
[libs/gl.git] / source / core / clipping.h
index 319a8d98ff765a9cfb4e1c7b3fd57ba825b60b75..f682dc6459e6b0b1efbc9fab213dafa2c57a6b0e 100644 (file)
@@ -2,35 +2,34 @@
 #define MSP_GL_CLIPPING_H_
 
 #include <vector>
-#include <msp/core/attributes.h>
-#include "bindable.h"
+#include "programdata.h"
 
 namespace Msp {
 namespace GL {
 
 class ClipPlane;
-class Matrix;
-class ProgramData;
 
-class Clipping: public Bindable<Clipping>
+class Clipping
 {
 private:
-       std::vector<const ClipPlane *> planes;
+       struct AttachedPlane
+       {
+               const ClipPlane *plane;
+               mutable unsigned generation;
 
-public:
-       static unsigned get_n_attach_points();
+               AttachedPlane(const ClipPlane *p): plane(p), generation(0) { }
+       };
+
+       std::vector<AttachedPlane> planes;
+       mutable ProgramData shdata;
 
+public:
        void attach(const ClipPlane &);
        void detach(const ClipPlane &);
 
-       DEPRECATED void attach(unsigned, const ClipPlane &p) { attach(p); }
-       DEPRECATED void detach(unsigned);
-
-       void update_shader_data(ProgramData &, const Matrix &) const;
-
-       void bind() const;
+       unsigned get_n_planes() const { return planes.size(); }
 
-       static void unbind();
+       const ProgramData &get_shader_data() const;
 };
 
 } // namespace GL