Merge pull request #2054 from mp3butcher/master

fix a rig bug visible with OSG_VERTEX_BUFFER_HINT=VAO
pull/541/head
Bret Curtis 6 years ago committed by GitHub
commit 393bd982c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -30,6 +30,7 @@ void MorphGeometry::setSourceGeometry(osg::ref_ptr<osg::Geometry> sourceGeom)
for (unsigned int i=0; i<2; ++i)
{
mGeometry[i] = new osg::Geometry(*mSourceGeometry, osg::CopyOp::SHALLOW_COPY);
mGeometry[i]->setDataVariance(osg::Object::DYNAMIC);
const osg::Geometry& from = *mSourceGeometry;
osg::Geometry& to = *mGeometry[i];

@ -63,6 +63,7 @@ void RigGeometry::setSourceGeometry(osg::ref_ptr<osg::Geometry> sourceGeometry)
{
const osg::Geometry& from = *sourceGeometry;
mGeometry[i] = new osg::Geometry(from, osg::CopyOp::SHALLOW_COPY);
mGeometry[i]->setDataVariance(osg::Object::DYNAMIC);
osg::Geometry& to = *mGeometry[i];
to.setSupportsDisplayList(false);
to.setUseVertexBufferObjects(true);

Loading…
Cancel
Save