X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcore%2Fclipping.h;h=6496aed0ed866c778fa1d93dbbc2a6edb23eeb8a;hb=e92de029768eef5f0fd744329e589161b46d0762;hp=b07195231423ca139a174af18c202c80153f6602;hpb=2d3113a7dbbe4be2f1d1e8980c1c4e42175163da;p=libs%2Fgl.git diff --git a/source/core/clipping.h b/source/core/clipping.h index b0719523..6496aed0 100644 --- a/source/core/clipping.h +++ b/source/core/clipping.h @@ -3,16 +3,14 @@ #include #include -#include "bindable.h" #include "programdata.h" namespace Msp { namespace GL { class ClipPlane; -class Matrix; -class Clipping: public Bindable +class Clipping { private: struct AttachedPlane @@ -32,14 +30,12 @@ public: void attach(const ClipPlane &); void detach(const ClipPlane &); + unsigned get_n_planes() const { return planes.size(); } + DEPRECATED void attach(unsigned, const ClipPlane &p) { attach(p); } DEPRECATED void detach(unsigned); const ProgramData &get_shader_data() const; - - void bind() const; - - static void unbind(); }; } // namespace GL