|
如果设置一个节点node的抗拒齿,是否这样就可以了:
osg::Multisample* ms = new osg::Multisample;
node->getOrCreateStateSet()->setAttribute( ms, osg::StateAttribute::ON );
node->getOrCreateStateSet()->setMode( GL_MULTISAMPLE_ARB, osg::StateAttribute::ON );
我做了如上设置,但没有效果。而且提示不支持抗锯齿。
但是我如果设置 traits->samples = 4,就会出现抗拒齿效果。希望各位解答一下!谢谢! |
|