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:
parent
7400050b38
commit
ed72f3335b
1 changed files with 6 additions and 0 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue