Removed the redundent relaseGLObjects() method declerations

This commit is contained in:
Robert Osfield
2006-10-03 20:42:57 +00:00
parent 490fc96ea6
commit 8e3a092a00
2 changed files with 0 additions and 11 deletions

View File

@@ -378,11 +378,6 @@ class OSG_EXPORT Drawable : public Object
/** do customized draw code.*/
virtual void drawImplementation(osg::RenderInfo& renderInfo,const osg::Drawable* drawable) const { drawImplementation(*renderInfo.getState(), drawable); }
/** release OpenGL objects in specified graphics context if State
object is passed, otherwise release OpenGL objexts for all graphics context if
State object pointer NULL.*/
virtual void releaseGLObjects(State* =0) const {}
};
/** Set the DrawCallback which allows users to attach customize the drawing of existing Drawable object.*/

View File

@@ -82,12 +82,6 @@ class OSG_EXPORT NodeCallback : public virtual Object {
}
}
}
/** release OpenGL objects in specified graphics context if State
object is passed, otherwise release OpenGL objexts for all graphics context if
State object pointer NULL.*/
virtual void releaseGLObjects(State* =0) const {}
public: