Re: [osg-users] Master renders with OpenGL error on OSX

2016-10-19 Thread Raymond de Vries
Hi, Small update on this: I tried gDEBugger (found via cnet.com) but it won't run on current OSX anymore. So no luck there. I will look into apitrace when there is time... Keep you posted. Cheers Raymond On 10/15/2016 3:17 PM, Trajce Nikolov NICK wrote: Raymond, try gDebugger (there is

[osg-users] 32bit DEPTH for RTT

2016-10-19 Thread Trajce Nikolov NICK
Hi Community, anyone with clue how to set RTT osg::Texture with 32bit DEPTH? Thanks a bunch as always! Cheers, Nick -- trajce nikolov nick ___ osg-users mailing list osg-users@lists.openscenegraph.org

Re: [osg-users] Latest OSG cannot realize viewer under Android

2016-10-19 Thread Robert Osfield
Hi Michael, I haven't done any development under Android myself so can't comment on the specifics. A few general comments might help a bit perhaps. Hopefully others in the community with Android experience will be chip in with specifics. The osgViewer library doesn't have any Android support

[osg-users] Latest OSG cannot realize viewer under Android

2016-10-19 Thread michael kapelko
Hi. I'm trying to make a minimal OSG application to work under Android. I closely follow GLES2 example. Upon viewer->realize() call I get the following errors: I/OSGLog: Warning: GraphicsContext::WindowingSystemInterfaces::getWindowingSystemInterface() failed, no interfaces available. I/OSGLog:

Re: [osg-users] OSG-3.4 crashes under Android

2016-10-19 Thread michael kapelko
Latest OSG turned out to run frame() without problems. 2016-10-19 10:24 GMT+07:00 michael kapelko : > If anyone has a working OSG Android example, that would also help. > Anyone? > > 2016-10-18 23:09 GMT+07:00 michael kapelko : > >> Hi. >> I have problem

Re: [osg-users] Plugins errors for unsupported files

2016-10-19 Thread Riccardo Corsi
Hi Robert, maybe I wasn't clear in my previous message. I'm not suggesting to remove the code, only to move it down few lines, and possibly inside an if block which checks if the video is loaded from internet (filename containing an URL path). That should cover the use case of streaming the

Re: [osg-users] Plugins errors for unsupported files

2016-10-19 Thread Robert Osfield
Hi Riccardo, Just removing a code block might fix the problem you are seeing but it'll break things for others so isn't an appropriate thing to do as we'll just end up flip flopping between who's code we break today. I haven't looked into the error itself yet, but my inclination would be to see

Re: [osg-users] Plugins errors for unsupported files

2016-10-19 Thread Riccardo Corsi
Hi Robert, right, the ffmpeg plugin is trying to load files without knowing if they are of a supported format. The related code is here: https://github.com/openscenegraph/OpenSceneGraph/blob/master/src/osgPlugins/ffmpeg/ReaderWriterFFmpeg.cpp#L149 The comment explains something related to videos