1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-26 18:35:20 +00:00

Fix StencilProperty front face mixup (Fixes #2802)

This commit is contained in:
scrawl 2015-07-28 03:20:18 +02:00
parent 420503d5fc
commit ac1f64b559

View File

@ -1159,11 +1159,11 @@ namespace NifOsg
osg::FrontFace* frontFace = new osg::FrontFace; osg::FrontFace* frontFace = new osg::FrontFace;
switch (stencilprop->data.drawMode) switch (stencilprop->data.drawMode)
{ {
case 1: case 2:
frontFace->setMode(osg::FrontFace::CLOCKWISE); frontFace->setMode(osg::FrontFace::CLOCKWISE);
break; break;
case 0: case 0:
case 2: case 1:
default: default:
frontFace->setMode(osg::FrontFace::COUNTER_CLOCKWISE); frontFace->setMode(osg::FrontFace::COUNTER_CLOCKWISE);
break; break;