]> git.tdb.fi Git - libs/gl.git/blobdiff - source/clipping.h
Rearrange soucre files into subdirectories
[libs/gl.git] / source / clipping.h
diff --git a/source/clipping.h b/source/clipping.h
deleted file mode 100644 (file)
index e42c28e..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-#ifndef MSP_GL_CLIPPING_H_
-#define MSP_GL_CLIPPING_H_
-
-#include <vector>
-#include "bindable.h"
-
-namespace Msp {
-namespace GL {
-
-class ClipPlane;
-class Matrix;
-class ProgramData;
-
-class Clipping: public Bindable<Clipping>
-{
-private:
-       std::vector<const ClipPlane *> planes;
-
-public:
-       static unsigned get_n_attach_points();
-
-       void attach(unsigned, const ClipPlane &);
-       void detach(unsigned);
-
-       void update_shader_data(ProgramData &, const Matrix &) const;
-
-       void bind() const;
-
-       static void unbind();
-};
-
-} // namespace GL
-} // namespace Msp
-
-#endif