Offscreen Antialiasing

The problem is not rendering the problem is reading back from the framebuffer.
From what I remember, you can’t read directly from a multisampled framebuffer before opengl3.1, once it’s been rendered you need to copy it to a single sampled framebuffer, then read from the latter.

see how it’s done in the FilterPostProcessor

1 Like