|
这是一段的关于模板测试的代码
_stencil->setFunction(osg::Stencil::ALWAYS,1,1);
_stencil->setOperation(osg::Stencil::REPLACE,osg::Stencil::REPLACE,osg::Stencil::REPLACE);
_depth->setFunction(osg:epth::GREATER);
_stencil->setFunction(osg::Stencil::EQUAL,1,1);
_stencil->setOperation(osg::Stencil::KEEP,osg::Stencil::INCR,osg::Stencil::INCR);
_value=_stencil->getFunctionMask();
此时模板缓存值应该是2呀,为什么还是1? |
|