X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fcore%2Fclipping.h;h=f682dc6459e6b0b1efbc9fab213dafa2c57a6b0e;hp=6496aed0ed866c778fa1d93dbbc2a6edb23eeb8a;hb=6065f6622cc275dc0b20baaf7c267e71169d18f3;hpb=c4aeeced7b397d46772577775bd3a0d6c4706cba diff --git a/source/core/clipping.h b/source/core/clipping.h index 6496aed0..f682dc64 100644 --- a/source/core/clipping.h +++ b/source/core/clipping.h @@ -2,7 +2,6 @@ #define MSP_GL_CLIPPING_H_ #include -#include #include "programdata.h" namespace Msp { @@ -25,16 +24,11 @@ private: mutable ProgramData shdata; public: - DEPRECATED static unsigned get_n_attach_points(); - 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; };