<div dir="ltr"><div>You still need to enable anti-aliasing for your scenegraph:</div><div><br></div><div>if (osg::GraphicsContext* context = camera->getGraphicsContext() {</div><div>  unsigned int contextID = context->getState()->getContextID();</div><div>  if (osg::isGLExtensionOrVersionSupported(contextID , "GL_ARB_multisample",1.3)){</div><div>    osg::ref_ptr<osg::StateSet> stateSet = _sceneGroup->getOrCreateStateSet();</div><div>    stateSet->setMode(GL_MULTISAMPLE_ARB, osg::StateAttribute::ON);</div><div>  }</div><div>}</div><div>Regards, Laurens Voerman.</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Aug 12, 2015 at 3:36 PM, Felix Goldberg <span dir="ltr"><<a href="mailto:felix.goldberg@gmail.com" target="_blank">felix.goldberg@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi,<br>
<br>
I am using a MATLAB port of OSG (can't yet post urls so google "matlab 3d rendering", sorry) and am getting aliased images. So I'm looking for a way to modify the code to perform anti-aliasing and I thought I'd done the trick by adding the line<br>
<br>
<br>
Code:<br>
traits->samples=16;<br>
<br>
<br>
<br>
right after<br>
<br>
<br>
Code:<br>
osg::ref_ptr<osg::GraphicsContext::Traits> traits = new osg::GraphicsContext::Traits;<br>
<br>
<br>
<br>
inside the function EngineOSG::initCanvas. However, when I compile and run I get exactly the same aliased images. What am I doing wrong or neglecting to do?<br>
<br>
Any help will be very much appreciated.<br>
<br>
...<br>
<br>
Thank you!<br>
<br>
Cheers,<br>
Felix<br>
<br>
------------------<br>
Read this topic online here:<br>
<a href="http://forum.openscenegraph.org/viewtopic.php?p=64741#64741" rel="noreferrer" target="_blank">http://forum.openscenegraph.org/viewtopic.php?p=64741#64741</a><br>
<br>
<br>
<br>
<br>
<br>
_______________________________________________<br>
osg-users mailing list<br>
<a href="mailto:osg-users@lists.openscenegraph.org">osg-users@lists.openscenegraph.org</a><br>
<a href="http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org" rel="noreferrer" target="_blank">http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org</a><br>
</blockquote></div><br></div>