1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-31 20:45:34 +00:00

silence compiler warning

This commit is contained in:
glassmancody.info 2021-08-15 08:02:00 -07:00
parent 7400050b38
commit ed72f3335b

View file

@ -145,12 +145,18 @@ namespace MWRender
{
case osg::Depth::LESS:
newDepth->setFunction(osg::Depth::GREATER);
break;
case osg::Depth::LEQUAL:
newDepth->setFunction(osg::Depth::GEQUAL);
break;
case osg::Depth::GREATER:
newDepth->setFunction(osg::Depth::LESS);
break;
case osg::Depth::GEQUAL:
newDepth->setFunction(osg::Depth::LEQUAL);
break;
default:
break;
}
newStateSet->setAttribute(newDepth, osg::StateAttribute::ON);
}