[osg-users] referenced memory management across dlls/exe (Windows only)

2015-02-28 Thread Trajce Nikolov NICK
Hi all, I am facing a problem with memory clean-up when mixing the place of allocation across dlls and the executable. Let say I have main executable that loads dlls (plugins) in which I allocate memory using referenced pointers. On exit, those pointers that were allocated in one of the dlls got

Re: [osg-users] referenced memory management across dlls/exe (Windows only)

2015-02-28 Thread Trajce Nikolov NICK
also I am using Qt Creator and MinGW (whatever the last version is). I know in Visual Studio you can specify the /MD option to use shared CRT libs and to avoid this problem. Any MinGW gurus around with hints? Nick On Sat, Feb 28, 2015 at 2:46 PM, Trajce Nikolov NICK

Re: [osg-users] Fwd: Last update in the osgAnimation::Animation ONCE mode bug fix

2015-02-28 Thread Matveyev Konstantin
Konstantin Matveyev On Nov 20, 2014, at 12:46 PM, Robert Osfield wrote: Hi KOS, I have just got to reviewing your proposed change to Animation.cpp. What name would you like me to use when attributing this fix when I check it in? Cheers, Robert. On 27 August 2014 13:03, Konstantin

[osg-users] Custom CompositeViewer Events

2015-02-28 Thread John Farrier
Hi, I have a program which is using a custom viewer derived from osgViewer::View. In this custom view's scene may be some custom types derived from osg::Geode. I'll call these MyView and MyGeode for the sake of the post. MyView's are put inside a osgViewer::CompositeViewer. All this works