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

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

2015-03-10 Thread Robert Osfield
Hi DizL et. al, No one has actually submitted that change, it's the first I've ever heard of it. So just waiting for something to be merged when nothing has been passed on is well, going to require alot of patience. I have look at the diff and it looks like a hack to me, and not suitable to be

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

2015-03-10 Thread jamie robertson
Hi, We're currenltly just embedding our osg window into Qt as foreign windows as decribed here: http://forum.openscenegraph.org/viewtopic.php?t=13602. This has worked well for us since Qt 5.4 although there are a few quirks, notably the lack of keyboard focus in the osg window and also you

[osg-users] Texture cache question

2015-03-10 Thread Trajce Nikolov NICK
Hi Community, what was the way to have textures cached and reused on load? any hint? Thanks a bunch! Nick -- trajce nikolov nick ___ osg-users mailing list osg-users@lists.openscenegraph.org

[osg-users] OSG/OpenGL users in Israel?

2015-03-10 Thread Chris Hanson
I'm going to be in Tel Aviv in a couple of weeks, and figured I'd ask here if anybody in that area was doing anything interesting in the OSG and OpenGL space. I'd love to drop by and talk shop. -- Chris 'Xenon' Hanson, omo sanza lettere. xe...@alphapixel.com http://www.alphapixel.com/ Training

[osg-users] Unresolved External on set/getUserValue

2015-03-10 Thread João
Everything else is working fine, but when I try to use the set/getUserValue functions, this happens: Error 2 error LNK2001: unresolved external symbol public: bool __cdecl osg::Object::getUserValueint(class std::basic_stringchar,struct std::char_traitschar,class std::allocatorchar

Re: [osg-users] Unresolved External on set/getUserValue

2015-03-10 Thread Farshid Lashkari
Hi João, It sounds like you need to include the ValueObject header: #include osg/ValueObject Cheers, Farshid On Tue, Mar 10, 2015 at 3:38 PM, João joao.henrique.pi...@hotmail.com wrote: Everything else is working fine, but when I try to use the set/getUserValue functions, this happens:

Re: [osg-users] Unresolved External on set/getUserValue

2015-03-10 Thread João
Thank you, that worked. Date: Tue, 10 Mar 2015 15:41:19 -0700 From: fla...@gmail.com To: osg-users@lists.openscenegraph.org Subject: Re: [osg-users] Unresolved External on set/getUserValue Hi João, It sounds like you need to include the ValueObject header: #include osg/ValueObject