Android OpenGL FBO multisampling (MSAA)
Mobile and Embedded
3
Posts
2
Posters
2.3k
Views
1
Watching
-
wrote on 1 Mar 2014, 07:20 last edited by
Is there any way to have frame buffer multisampling (MSAA) on Android qt GLWidget/QtQuick app?
I read somewhere that android HAVE multisampling (not sure about FBO). But how to enable it? -
wrote on 5 Mar 2014, 15:29 last edited by
For QGLWidget, try setting a QGLFormat via setFormat() that has sampleBuffers set to true and samples to 4 (for 4x msaa).
For QQuickWindow/QQuickView, pass a QSurfaceFormat with samples set to 4. -
wrote on 13 Mar 2014, 13:43 last edited by
It does not work with my android device. It stays non antialiased.