Re: [osg-users] OpenSceneGraph-3.6.1 release candidate 6 tagged

2018-05-22 Thread Björn Blissing
Hi, I haven't been able to test the previous release candidates. But I do have some troubles reading some of my osgb files. These files work with osg 3.5.9 but currently gives a lot of the following warnings and then fails: ... InputIterator::checkStream

Re: [osg-users] OpenSceneGraph-3.6.1 release candidate 6 tagged

2018-05-22 Thread Robert Osfield
Hi Björn, Sorry to hear that you have .osgb's that are failing. I can have a look into it. It could be a simple regression but also might a more awkward issue to resolve, there is chance that there is incompatibility that is not straight forward to resolve - for instance if there was a bug in th

[osg-users] osgQt mouse position from QEvent is always zero

2018-05-22 Thread Sebastian Schmidt
I'm trying to get current mouse position when mouseMoveEvent() gets called after moving the mouse over a QWidget. QMouseEvent->pos() or QMouseEvent->globalPos() is always zero. The same goes for catching the event in a custom eventFilter. I'm using osgQt from version 3.4.1. I would rather use

Re: [osg-users] OpenSceneGraph-3.6.1 release candidate 5 is tagged

2018-05-22 Thread Glenn Waldron
Robert, I am getting a message repeated on the console (OpenSceneGraph-3.6 branch). Verbosity level, or user error? Warning:createOrReuseRenderLeaf() skipping multiply referenced entry. Glenn Waldron On Sun, May 20, 2018 at 8:47 AM Robert Osfield wrote: > Hi All, > > I have fixed an issue wit

Re: [osg-users] OpenSceneGraph-3.6.1 release candidate 5 is tagged

2018-05-22 Thread Daniel Emminizer, Code 5773
Robert, Glenn, I am seeing this problem too in a different application than Glenn. I have not yet reported it yet because I've moved forward to upgrading another part of my application, and only then started to see the problem. I figured it was something on my own end and haven't investigated

Re: [osg-users] OpenSceneGraph-3.6.1 release candidate 6 tagged

2018-05-22 Thread Maxim Stere
Hi Robert, We found a bug in the timer class. in osg/Timer lines 21 to 25 read: Code: #if defined(_MSC_VER) typedef __int64 Timer_t; #else typedef unsigned long long Timer_t; #endif but it should be Code: #if defined(_MSC_VER) typedef unsigned __int64 Timer_t; #else typ

Re: [osg-users] OpenSceneGraph-3.6.1 release candidate 5 is tagged

2018-05-22 Thread Robert Osfield
Hi Glenn, On 22 May 2018 at 16:41, Glenn Waldron wrote: > Robert, > I am getting a message repeated on the console (OpenSceneGraph-3.6 branch). > Verbosity level, or user error? > > Warning:createOrReuseRenderLeaf() skipping multiply referenced entry. My guess this is related to the fix to the w

Re: [osg-users] OpenSceneGraph-3.6.1 release candidate 6 tagged

2018-05-22 Thread Robert Osfield
Thanks Maxim. I've applied this fix to the 3.6 branch and master. On 22 May 2018 at 21:17, Maxim Stere wrote: > Hi Robert, > > We found a bug in the timer class. > > in osg/Timer lines 21 to 25 read: > > > Code: > > #if defined(_MSC_VER) > typedef __int64 Timer_t; > #else > typedef unsign