[osg-users] [Toward BufferObject serialization] Geometry serializer FinishedObjectReadCallback???

2016-05-20 Thread Julien Valentin
Hi,all I would like to provide osg TransformFeedback serialization feature but something weird forbid BufferObject serialization: This callback calls setUseVertexBufferObjects(false) and just kill all BufferObject attached the geometry's BufferDatas Code: struct

Re: [osg-users] Setting up travis for OSG in github

2016-05-20 Thread John Hughes
Hi Jordi, I was actually just thinking this morning about this. Most modern software development teams these days use a continuous integration solution like Travis, along with an automated regression suite. I've had plenty experience maintaining both, so let me know if I can be of help.

Re: [osg-users] Submission/Pull Request problems on github

2016-05-20 Thread Pjotr Svetachov
According to these post you can let the git tools automatically make a branch for every pull request on github: http://blog.scottlowe.org/2015/09/04/checking-out-github-pull-requests-locally/ https://coderwall.com/p/3dgwcg/github-add-remote-for-pulls-and-merges Cheers, Pjotr --

Re: [osg-users] Submission/Pull Request problems on github

2016-05-20 Thread Björn Blissing
robertosfield wrote: > Hi Björn, > > I just checked, github still isn't giving my an option to reopen the > pull request. Could you try another push of the request? > I have submitted my pull request again (it was the gitignore patterns for Visual Studio). robertosfield wrote: > > I'm

Re: [osg-users] Submission/Pull Request problems on github

2016-05-20 Thread Robert Osfield
Hi Björn, I just checked, github still isn't giving my an option to reopen the pull request. Could you try another push of the request? Robert. On 20 May 2016 at 13:34, Björn Blissing wrote: > > robertosfield wrote: >> >> Do you know what steps do members of the

Re: [osg-users] Submission/Pull Request problems on github

2016-05-20 Thread Björn Blissing
robertosfield wrote: > > Do you know what steps do members of the community need to do to fix > things? Perhaps we can pass instructions on via comments of each pull > request. Hi Robert, Since you rewrote the entire history I had to hard reset all my branches in my forked repo. So for each

Re: [osg-users] Setting up travis for OSG in github

2016-05-20 Thread Jordi Torres
Hi Robert, Let me do some tests in my own fork of OSG in github, once I have it working I will send a submission with the needed files and instructions to set it up. If anyone in the community has experience using travis with C++ don't hesitate to chime in :). Cheers. 2016-05-20 13:46

Re: [osg-users] Setting up travis for OSG in github

2016-05-20 Thread Robert Osfield
Hi Jordi, On 20 May 2016 at 10:58, Jordi Torres wrote: > Travis is completely integrated with github, so when a build fails you are > totally aware, also it works for pull requests, so automatically you can > know if a PR breaks the build ( in a specific OS or in all of

Re: [osg-users] Submission/Pull Request problems on github

2016-05-20 Thread Robert Osfield
Hi All, I'm struggling to get git to work in a way that allows me to do a proper review with the ability to graphically comparing sets of changes, for instance I have a set one pull request that has 88 files modified, alot of files but a small number of relatively minor changes such a variable

Re: [osg-users] Setting up travis for OSG in github

2016-05-20 Thread Jordi Torres
Hi Robert, Travis is completely integrated with github, so when a build fails you are totally aware, also it works for pull requests, so automatically you can know if a PR breaks the build ( in a specific OS or in all of them ). Also you don't need dedicated machines from community folks to run

Re: [osg-users] Setting up travis for OSG in github

2016-05-20 Thread Robert Osfield
Hi Jordi, How is it different to what is provided by CDash? Robert. On 20 May 2016 at 10:17, Jordi Torres wrote: > Hi Robert et al. > > It could be a good idea to setup a travis build for PR's and after each push > in github. > (

[osg-users] Setting up travis for OSG in github

2016-05-20 Thread Jordi Torres
Hi Robert et al. It could be a good idea to setup a travis build for PR's and after each push in github. ( https://docs.travis-ci.com/user/languages/cpp ) Many projects use it and it is really useful to detect build brakages or failing tests. Maybe others in the community have some experience

Re: [osg-users] REGISTER_WINDOWINGSYSTEMINTERFACE() breaks build

2016-05-20 Thread Robert Osfield
Hi John, Sorry to hear things have broken. I had to make the changes to Apple side without being able to test it. I have been able to test under Linux and Windows and haven't seen build problems, but... if we look at the usage it's slightly different - X11 and Win32 I don't specify a namespace

Re: [osg-users] Submission/Pull Request problems on github

2016-05-20 Thread Robert Osfield
Hi Jannik, Thanks for the info. Looks like my fix of the author name/email address yesterday created all these problems with pull requests. I've developed rather a love/hate relationship with git and github. Some things going really smoothly but then can turn around and bite you and just throw

[osg-users] REGISTER_WINDOWINGSYSTEMINTERFACE() breaks build

2016-05-20 Thread John Hughes
Hi folks, In commit fe6238, a macro was added to osg/GraphicsContext: Code: #define REGISTER_WINDOWINGSYSTEMINTERFACE(ext, classname) \ extern "C" void graphicswindow_##ext(void) {} \ static osg::WindowingSystemInterfaceProxy s_proxy_##classname(#ext); This unfortunately doesn’t quite work

Re: [osg-users] Submission/Pull Request problems on github

2016-05-20 Thread Alberto Luaces
"Jannik Heller" writes: > Hi Robert, > > by fixing the author names you have essentially re-written the > repository history. This means that everyone who submitted > pull-requests in the past will have to manually rebase their changes > on top of the new history. But it's not so difficult to do

[osg-users] Local Camera angles

2016-05-20 Thread Wojtek Kowalski
Hi, How to get local rotation angles when camera is set by setViewMatrixAsLookAt? I've got two camera modes: 1) Camera is set by global position and local angles Code: osg::Matrix worldMatrix; ellipsoid->computeLocalToWorldTransformFromLatLongHeight(longitude, latitude, height, worldMatrix);