What is the best way to handle FBOs in OpenGL?
Asked Answered
I

2

17

I wonder since a long time what would be the best way to handle OpenGL FrameBuffer Objects (FBO). Switching FBOs can be costly but defining new attachments too.

How do you do it fast ?

I hesitate between these 3:

  • 1 FBO for everything, change attachment but don't switch between FBOs

  • 1 FBO for each render target (size + format) in the rendering path. That means i will reuse the same FBO for similar render targets. But this way a custom blur would cost 4+ FBOs.

  • 1 FBO for each render target, set attachments only once and then switch between FBOs

Also, should I minimize the number of FBO switches (like I minimize the number of texture bindings) ?

Inquiry answered 4/2, 2010 at 9:30 Comment(4)
first... what is a FBO? If you're to use an acronym multiple times it's recommended to use it unexpanded the first time.Qulllon
FBO = Framebuffer ObjectInquiry
Nice question.However the first part of the answer given below contradicts what is said in the book "OpenGL Insights".The book states that switching between multiple FBOs is costly and the best thing to increase the performance is using multiple attachments to the same FBO.Montana
That's why he said "In order of increasing performance".Inquiry
H
16

Updated references:


NVIDIA 2005 (probably outdated): The last official performance recommendation by NVIDIA I know is almost five years old. In his GDC presentation, Simon Green recommends the following (slide 29):

In order of increasing performance:

  1. Multiple FBOs
    • create a separate FBO for each texture you want to render to
    • switch using BindFramebuffer()
    • can be 2x faster than wglMakeCurrent() in beta NVIDIA drivers
  2. Single FBO, multiple texture attachments
    • textures should have same format and dimensions
    • use FramebufferTexture() to switch between textures
  3. Single FBO, multiple texture attachments
    • attach textures to different color attachments
    • use glDrawBuffer() to switch rendering to different color attachments

In my experience, the second case is really faster than the first (ATI Radeon HD4850, Geforce 8800GT). I've not tried the third case, as it would have complicated my code.

Horse answered 4/2, 2010 at 23:10 Comment(4)
The GDC presentation here mentions to not switch attachments because it apparently leads to bad performance. So it contradicts this performance order.Krueger
Please note that the presentation I mentioned is from 2005, and my results are from 2009. I wouldn't be surprised if the order of performance changed over the last decade.Horse
I would also add this link, which mention better performance to switch FBOs (#1) instead of switching attachments (#2 and #3). It would be a good idea to update the answer to this question.Krueger
Thanks Deathicon, I've just updated the answer including your linksHorse
A
4

As a matter of philosophy, modifying an object state requires that it be re-validated. Instead, simply changing the object binding (that's already valid from the previous frame) should be faster for the driver [1].

So as a first implementation, I'd go for 1 FBO for each render target (or more precisely, render target set. You usually render to multiple buffers at once).

That said, nothing beats benchmarking your app against multiple implementations.

[1] I mention for the driver, because an FBO change can force a GPU flush, depending on architecture. It will introduce bubbles in most cases. So it is definitely something that you don't want to do often. It's more important than optimizing the texture bindings, e.g.

Azaleeazan answered 4/2, 2010 at 12:9 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.