From 89ca6946845bb57c3f6e8597c32593f324bf92bd Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Tue, 10 Jun 2014 08:50:42 +0000 Subject: [PATCH] Added using Callback::run() method to Drawable::CullCallback git-svn-id: http://svn.openscenegraph.org/osg/OpenSceneGraph/trunk@14249 16af8721-9629-0410-8352-f15c8da7e697 --- include/osg/Drawable | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/osg/Drawable b/include/osg/Drawable index 3cd0623a9..c09a8ce44 100644 --- a/include/osg/Drawable +++ b/include/osg/Drawable @@ -307,6 +307,9 @@ class OSG_EXPORT Drawable : public Node META_Object(osg,CullCallback); + // just use the standard run implementation to passes run onto any nested callbacks. + using Callback::run; + /** deprecated.*/ virtual bool cull(osg::NodeVisitor*, osg::Drawable*, osg::State*) const { return false; }