Added next stage of support for osg::Uniform in .osg plugin

This commit is contained in:
Robert Osfield
2005-04-18 12:34:28 +00:00
parent 0a995f8093
commit 648677ce44
5 changed files with 51 additions and 2 deletions

View File

@@ -47,6 +47,7 @@ class OSGDB_EXPORT Input : public FieldReaderIterator
virtual osg::Image* readImage();
virtual osg::Drawable* readDrawable();
virtual osg::StateAttribute* readStateAttribute();
virtual osg::Uniform* readUniform();
virtual osg::Node* readNode();
virtual osg::Object* readObject(const std::string& fileName);

View File

@@ -111,6 +111,7 @@ class OSGDB_EXPORT Registry : public osg::Referenced
osg::Object* readObject(Input& fr);
osg::Image* readImage(Input& fr);
osg::Drawable* readDrawable(Input& fr);
osg::Uniform* readUniform(Input& fr);
osg::StateAttribute* readStateAttribute(Input& fr);
osg::Node* readNode(Input& fr);
@@ -449,6 +450,7 @@ class OSGDB_EXPORT Registry : public osg::Referenced
DotOsgWrapperMap _imageWrapperMap;
DotOsgWrapperMap _drawableWrapperMap;
DotOsgWrapperMap _stateAttrWrapperMap;
DotOsgWrapperMap _uniformWrapperMap;
DotOsgWrapperMap _nodeWrapperMap;
DotOsgWrapperMap _classNameWrapperMap;