Re: [osg-users] can't change the multisamples

2008-05-25 Thread Guy
To: OpenSceneGraph Users Subject: Re: [osg-users] can't change the multisamples Hi Martin, You should set the multi-sample hint before you create the viewer, it only uses these values when the viewer creates its graphics contexts via the osgViewer::View::setUpView*() methods. The DisplaySettings

[osg-users] can't change the multisamples

2008-05-22 Thread Martin Großer
Hello, I would like set up the multisamples for my viewer. First I create a object DisplaySettings and after this I call the function setNumMultiSamples. osg::DisplaySettings* ds = new osg::DisplaySettings(); ds-setNumMultiSamples( 8 ); But nothing was happened. The Viewer still use the global

Re: [osg-users] can't change the multisamples

2008-05-22 Thread Robert Osfield
Hi Martin, You should set the multi-sample hint before you create the viewer, it only uses these values when the viewer creates its graphics contexts via the osgViewer::View::setUpView*() methods. The DisplaySettings multi sample values aren't used after this initialization. Also if you are