Re: [osg-users] [build] Building OSG 3.6.4 in Win64 TDM GNU.

2019-08-22 Thread Zachary1234
AlphaPixel has a buggy web form in its Contact Us area that can't be generally 
used.  I have attempted emailing them separately using
the email address from inside the buggy code, to no avail.

They have a second email address at the top left hand corner of the web page.  
I have emailed that address too, with no reply.

I can't telephone AlphaPixel because we are always day/night opposed, given how 
far away from each other on planet earth we always are.

Is there someone on these forums who can give me an email address
for AlphaPixel that that will at least read from and reply to me from,
that the public can use to approach them, please?

--
Read this topic online here:
http://forum.openscenegraph.org/viewtopic.php?p=76604#76604





___
osg-users mailing list
osg-users@lists.openscenegraph.org
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org


Re: [osg-users] Removing objects with shared GL state from scene graph

2019-08-22 Thread Robert Osfield
Hi Chris,

On Wed, 21 Aug 2019 at 20:18, Chris Djali  wrote:

> Is the plan still to have OSG itself release GL objects in the object
> cache when the contexts they're associated with are destroyed, and if so,
> have you had any further thoughts about how this might be accomplished?
>
> The problem is still that there's nothing in osgViewer that has the same
> lifetime as an osg::GraphicsContext, and osg isn't supposed to be aware of
> osgDB, so it has to be osgViewer that releases things, right?
>

I have already added a
osgDB::Registry::instance()->releaseGLObjects(state); to the
osgViewer::Renader::releaseGLObjects():


void Renderer::releaseGLObjects(osg::State* state) const
{
osgDB::Registry::instance()->releaseGLObjects(state);

if (_sceneView[0].valid()) _sceneView[0]->releaseGLObjects(state);
if (_sceneView[1].valid()) _sceneView[1]->releaseGLObjects(state);
}

This is in master and the 3.6 branch.  This should clear the ObjectCache.
It's why I added this.

I can't keep running around in circles on this.  I've put in a lot of
effort to try and resolve what I can, but now I need to get on with other
work.

Robert.
___
osg-users mailing list
osg-users@lists.openscenegraph.org
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org