]> git.tdb.fi Git - libs/gl.git/blobdiff - source/core/clipplane.h
Remove generic clipping state
[libs/gl.git] / source / core / clipplane.h
diff --git a/source/core/clipplane.h b/source/core/clipplane.h
deleted file mode 100644 (file)
index a2b5625..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-#ifndef MSP_GL_CLIPPLANE_H_
-#define MSP_GL_CLIPPLANE_H_
-
-#include "vector.h"
-
-namespace Msp {
-namespace GL {
-
-class ProgramData;
-
-class ClipPlane
-{
-private:
-       Vector4 eq = { 0.0f, 0.0f, 0.0f, 1.0f };
-       unsigned generation = 0;
-
-public:
-       ClipPlane() = default;
-       ClipPlane(const Vector4 &);
-       ClipPlane(const Vector3 &, const Vector3 &);
-
-       void set_equation(const Vector4 &);
-       void set_plane(const Vector3 &, const Vector3 &);
-       void update_shader_data(ProgramData &, unsigned) const;
-
-       unsigned get_generation() const { return generation; }
-};
-
-} // namespace GL
-} // namespace Msp
-
-#endif