Re: [osg-users] Vector Iterator getting Invalidated in OSG

2013-02-23 Thread Abhishek Bansal
Hi, Ok I tried setting osg::NotifyLevel to DEBUG_INFO but its not giving any error. Please give me some direction to look at. Thank you! Cheers, Abhishek -- Read this topic online here: http://forum.openscenegraph.org/viewtopic.php?p=52831#52831

Re: [osg-users] Vector Iterator getting Invalidated in OSG

2013-02-23 Thread Robert Osfield
Hi Abhishek, The thread safety provided by the OSG isn't quite what you are assuming, just setting the DataVariance to DYNAMIC only affects whether the update, event and cull traversals of the current frame can be run multi-thread the draw traversal of the previous frame, and this hint is only

Re: [osg-users] Vector Iterator getting Invalidated in OSG

2013-02-23 Thread Abhishek Bansal
Hi Robert, Thank You for your reply ! So you mean that I should not update my scenegraph from a different thread than viewer. I can only do these updations in my main thread during update and event traversals right ? robertosfield wrote: Hi Abhishek, So... you'll need to take a step back