Re: [osg-users] OpenSceneGrah-3.4.0 release candidate 4 tagged

2015-07-20 Thread DizL
) || _MSC_VER1600) inline int isfinite( double x ) { return _finite( x ); } inline int isinf( double x ) { return !_finite( x ) !_isnan( x ); } #endif 1700 instead of 1600 regards, DizL ___ osg-users mailing list osg-users@lists.openscenegraph.org http

Re: [osg-users] OpenSceneGrah-3.4.0 release candidate 4 tagged

2015-07-20 Thread DizL
oops, #if defined(WIN32) !defined(__MINGW32__) (!defined(_MSC_VER) || _MSC_VER=1600) inline int isfinite( double x ) { return _finite( x ); } inline int isinf( double x ) { return !_finite( x ) !_isnan( x ); } #endif should be 1700 instead of 1600 (in last post '=' was lost) regards, DizL

Re: [osg-users] Qt 5.4 + OSG 3.2.1 + Multithreading

2015-03-10 Thread DizL
Hi, I'm also waiting for official osg for = qt 5.4 support temp solution is: https://github.com/pangwa/osg/commit/cb9084bfc5ac986658779ca188a32f46b1141c68 multithreading is working but you cannot change in the fly regards, DizL ___ osg-users mailing

Re: [osg-users] Qt 5.4 + OSG 3.2.1 + Multithreading

2015-03-10 Thread DizL
Hi, What about this solution http://pastebin.com/W2QJj8bQ# ??? Is it working? regards, DizL ___ osg-users mailing list osg-users@lists.openscenegraph.org http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org