How To Enable Anti-Aliasing in View Components
Opened this issue · 0 comments
pl-energid commented
Scenes rendered within OSG View
QML components do not have anti-aliasing applied. What is the correct way to enable anti-aliasing for such scenes?
I have tried the following approaches but to no avail:
- Enable multi-sampling on default
QSurfaceFormat
(see https://stackoverflow.com/a/49576756). - Call
osg::DisplaySettings::setNumMultiSamples()
in main function of application.