Hi Aurelien,

Could you try tests using the standard examples, for FSAA try:

Without FSAA:
   osgviewer cow.osg

Wih FSAA:

  osgviewer cow.osg --samples 2

Have a look around the edges of the cow for the classic stair stepping
in the non FSAA image and then compare to the FSAA one to see if it's
functioning correctly.  --samples sets both the Traits::samplesBuffers
and Traits::samples to the user specified value.

  osgprerender cow.osg  --fbo-samples 2 --color-samples 2

Then try enabling the use of multi-sampled FBO in the osgprerender example:

  osgprerender cow.osg  --fbo-samples 2 --color-samples 2

Finally add in the --samples 2 option to enable FSAA as well:

  osgprerender cow.osg  --fbo-samples 2 --color-samples 2 --samples 2

I've done this on my system and all the above tests work and observe
the expected reduction in stair stepping on the outlines of the cow
and flag respectively.

If all the above work fine on your system then the error will be
somewhere in your own code, if they don't work then it points to a
problem in the driver.

Robert.
_______________________________________________
osg-users mailing list
[email protected]
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org

Reply via email to