Futher updates to MemoryManager, fixed memory leak in osgconv.

This commit is contained in:
Robert Osfield
2002-03-27 16:31:25 +00:00
parent 77ae5ddcb6
commit 7e2c82f141
5 changed files with 1014 additions and 968 deletions

View File

@@ -80,9 +80,12 @@ class OSGUTIL_EXPORT SceneView : public osg::Referenced
/** Set the DisplaySettings. */
inline void setDisplaySettings(osg::DisplaySettings* vs) { _displaySettings = vs; }
/** Get the DisplaySettings */
/** Get the const DisplaySettings */
inline const osg::DisplaySettings* getDisplaySettings() const { return _displaySettings.get(); }
/** Get the DisplaySettings */
inline osg::DisplaySettings* getDisplaySettings() { return _displaySettings.get(); }
/** Set the background color used in glClearColor().
Defaults to an off blue color.*/