Re: [osg-users] Preparing to make 3.5.3 dev release, please test

2016-06-02 Thread Robert Osfield
On 2 June 2016 at 20:03, Robert Osfield wrote: > IF(${CMAKE_MAJOR_VERSION} GREATER 2 AND CMAKE_CXX_COMPILER_VERSION > VERSION_GREATER 4.9) > SET(OSG_AGGRESSIVE_WARNING_FLAGS > ${OSG_AGGRESSIVE_WARNING_FLAGS} -Wshadow) > ENDIF() > > Works for me under

Re: [osg-users] freetype build support on Windows

2016-06-02 Thread Stuart Mentzer
Hi Robert, This is a bit of a head-scratcher but even when building freetype ostensibly without PNG support (-DWITH_PNG=OFF) I am still getting those unresolved png errors. It seems to trace back to the #define FT_CONFIG_OPTION_USE_PNG in ftoption.h that isn't commented out in the

[osg-users] PolytopeIntersection with LINE_STRIP_ADJACENCY

2016-06-02 Thread Jethro Leevers
Hi, I am currently trying to improve my picking process from a line segment intersector to a polytope intersector. I am able to select all basic primitive types but an primitives made with LINE_STRIP_ADJACENCY are not pickable. Perhaps something to do with the TemplatePrimitiveFunctor? Also

Re: [osg-users] Preparing to make 3.5.3 dev release, please test

2016-06-02 Thread Jannik Heller
Hi Robert, Thanks for fixing the warning. Just let you know, I did a build of OpenMW against OSG 3.5.3 and did not encounter any build- or runtime problems. Cheers, Jannik -- Read this topic online here: http://forum.openscenegraph.org/viewtopic.php?p=67368#67368

Re: [osg-users] Preparing to make 3.5.3 dev release, please test

2016-06-02 Thread François Bérard
Yup, compiles and executes fine now. But: There are tons of warnings such as: In file included from /Users/fberard/Downloads/osg_git/OpenSceneGraph-master/include/osg/NodeVisitor:21: /Users/fberard/Downloads/osg_git/OpenSceneGraph-master/include/osg/ValueMap:53:51: warning: expression with

Re: [osg-users] freetype build support on Windows

2016-06-02 Thread Robert Osfield
Hi Stuart, On 2 June 2016 at 02:08, Stuart Mentzer wrote: > While trying to get past build problems I did try using CMake's > FindFreetype.cmake and it didn't work so I suspect you are correct that some > other changes will be required. It does look like the CMake

Re: [osg-users] freetype build support on Windows

2016-06-02 Thread Stuart Mentzer
robertosfield wrote: > Could you please try a build with the latest that I've checked in and > see what happens. Trying with Visual C++ 2015... I've been enabling PNG support in my freetype lib build (-DWITH_PNG=ON) and this causes unresolved png symbols when linking osgdb_freetype.dll since

Re: [osg-users] freetype build support on Windows

2016-06-02 Thread Robert Osfield
Hi Stuart, The PNG link in freetype is something we can't hardwire into the OSG's freetype plugin as it will break the build for those who use freetype without PNG and don't have png available. Could you check the CMake FindFreetype.cmake to see if it has any var for additional libraries that

[osg-users] Preparing to make 3.5.3 dev release, please test

2016-06-02 Thread Robert Osfield
Hi All, I spent the majority of May catching up with submissions and bug fixes and now in June I'd like to start moving towards getting a stable release out the door - this will 3.6.0. The first step along this way is the 3.5.3 dev release which wraps up all the recent work that been checked

Re: [osg-users] Multitouch OSG and Qt

2016-06-02 Thread Christian Kunz
Hi, I have now tested the solution and also a newer Version of OSG 3.4.0. The problem is that it looks like that the touch input is not correctly forwarded to OSG. Touch with one finger is ok -> like you would use left mouse on TrackballManipulator. Rotate in scene, fixed rotation point. Zoom

Re: [osg-users] Preparing to make 3.5.3 dev release, please test

2016-06-02 Thread Robert Osfield
Hi François, I suspect the build error is down to the osgViewer:: in the REGISTER_WINDOWINGSYSTEMINTERFACE line that is affecting the macro expansion. I have just checked in removal of the osgViewer:: so the line now looks like: REGISTER_WINDOWINGSYSTEMINTERFACE(IOS,

Re: [osg-users] Preparing to make 3.5.3 dev release, please test

2016-06-02 Thread François Bérard
Hello, I just downloaded a zip from the git web site, expanded, cmake, make, and stopped on an error (see below). This is on OSX 10.11.5, using XCode command line tools v7.3 (Apple LLVM version 7.3.0 (clang-703.0.29)) Hope this helps. [ 19%] Building CXX object

Re: [osg-users] Preparing to make 3.5.3 dev release, please test

2016-06-02 Thread Jannik Heller
Hi Robert, I haven't finished building yet, but right off the bat I get about a million of these warnings: Code: /home/scrawl/Dev/osg/include/osg/Vec3us:34:58: warning: declaration of ‘g’ shadows a member of 'this' [-Wshadow] /home/scrawl/Dev/osg/include/osg/Vec4f:46:9: warning: declaration

Re: [osg-users] unsubscribe

2016-06-02 Thread Robert Osfield
Hi Alex, All posts to the mailing list have a link to the admin page where you can unsubcribe. Just look for it and you'll find it :-) Robert. On 2 June 2016 at 19:05, Alex J. Cuadros Vargas wrote: > unsubscribe > > ––– > Alex > >

Re: [osg-users] Preparing to make 3.5.3 dev release, please test

2016-06-02 Thread Robert Osfield
Hi Jannik, I've noticed this same issue with a Kubuntu 14.04 install I have, I don't recall the gcc version but it's below 5 like yours. It seems the addition of -Wshadow to the OSG_AGGRESSIVE_WARNING_FLAGS causes mahem with the compile kick out lots of ridiculous shadows reports, all these

[osg-users] unsubscribe

2016-06-02 Thread Alex J. Cuadros Vargas
unsubscribe ––– Alex ___ osg-users mailing list osg-users@lists.openscenegraph.org http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org

Re: [osg-users] Preparing to make 3.5.3 dev release, please test

2016-06-02 Thread Robert Osfield
Hi Jannik, I have done some more searching online and come across a compile version variable that exist in Cmake 2.8 and later, I've just added then follow to the root CMakeLists.txt: IF(${CMAKE_MAJOR_VERSION} GREATER 2 AND CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 4.9)