Fixed unused parameter warning.

This commit is contained in:
Robert Osfield 2016-06-08 12:21:51 +01:00
parent b67a331627
commit c7c1f6a27e

View File

@ -42,8 +42,8 @@ typedef std::vector< osg::ref_ptr<osg::Image> > ImageList;
class SubloadCallback : public osg::Texture2DArray::SubloadCallback
{
public:
virtual void load(const osg::Texture2DArray& texture, osg::State& state) const { }
virtual void subload(const osg::Texture2DArray& texture, osg::State& state) const { }
virtual void load(const osg::Texture2DArray& /*texture*/, osg::State& /*state*/) const { }
virtual void subload(const osg::Texture2DArray& /*texture*/, osg::State& /*state*/) const { }
};