Added osg:: infront of State in Draw callback to make the callback work

when copy and pasting it in user code.
This commit is contained in:
Robert Osfield
2004-01-30 21:10:05 +00:00
parent 26303b989a
commit 268096be69

View File

@@ -317,7 +317,7 @@ class SG_EXPORT Drawable : public Object
META_Object(osg,DrawCallback)
/** do customized draw code.*/
virtual void drawImplementation(State&,const osg::Drawable*) const {}
virtual void drawImplementation(osg::State&,const osg::Drawable*) const {}
};
/** Set the DrawCallback which allows users to attach customize the drawing of existing Drawable object.*/