[osg-users] MSVS2015 3rdparty build

2015-07-25 Thread Trajce Nikolov NICK
Hi Community, anyone aware of build of the 3rdparty dependencies with MSVS 2015 and willing to share? Thanks a bunch as always! Cheers, Nick -- trajce nikolov nick ___ osg-users mailing list osg-users@lists.openscenegraph.org http://lists.openscenegr

Re: [osg-users] How can I delete skybox from the memory totally

2015-07-25 Thread Jannik Heller
> If I use m_SkyNode.release(), the memory increases again and again. > The release() function unassigns the pointer, but without freeing it (see the function documentation). What you want instead is Code: m_SkyNode = NULL; You seem to be fairly confused about the concept of shared poi

Re: [osg-users] what's wrong with removechild

2015-07-25 Thread Jannik Heller
Looks like you aren't showing us the whole code. I don't see a removeChild in the attached file. In general, when removing a node you need to remove it as child of its particular parent(s) (which is not necessarily the root node). Code: while (node->getNumParents()) node->getParent(0)->re