From 3bbd4bbfd6b9f2b945f035569ef849acedb84cb3 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Thu, 25 Sep 2008 15:19:42 +0000 Subject: [PATCH] Removed unused methods --- include/osg/TransferFunction | 9 --------- 1 file changed, 9 deletions(-) diff --git a/include/osg/TransferFunction b/include/osg/TransferFunction index 9d76c46f6..52efc8695 100644 --- a/include/osg/TransferFunction +++ b/include/osg/TransferFunction @@ -36,12 +36,6 @@ class OSG_EXPORT TransferFunction : public osg::Referenced osg::Image* getImage() { return _image.get(); } const osg::Image* getImage() const { return _image.get(); } - osg::Texture* getTexture() { return _texture.get(); } - const osg::Texture* getTexture() const { return _texture.get(); } - - osg::Shader* getShader() { return _shader.get(); } - const osg::Shader* getShader() const { return _shader.get(); } - protected: virtual ~TransferFunction(); @@ -50,9 +44,6 @@ class OSG_EXPORT TransferFunction : public osg::Referenced Colors _colors; osg::ref_ptr _image; - osg::ref_ptr _texture; - osg::ref_ptr _shader; - }; /** 1D variant of TransferFunction. */