Hi gambr

I had similar issues when adding/removing views from composite viewer. Finally 
my crashes were solved by stopping and restarting Threading !

The code then looks like this:


Code:

// adding
        m_Viewer.stopThreading();
        m_Viewer.addView( a new view pointer );
        m_Viewer.startThreading();
// removing
        m_Viewer.stopThreading();
        m_Viewer.removeView( an existing view pointer );
        m_Viewer.startThreading();




Regards
Daniel

------------------
Read this topic online here:
http://forum.openscenegraph.org/viewtopic.php?p=57572#57572





_______________________________________________
osg-users mailing list
[email protected]
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org

Reply via email to