Why is a custom FBO not antialiased?

This is a limitation of WebGL 1. MSAA does not work in context of off-screen rendering. You have to manually perform anti-aliasing. FXAA via post processing is one possible solution.

https://threejs.org/examples/webgl_postprocessing_fxaa.html

3 Likes