I'm trying to implement a real motion blur using OpenGL, but without the accumulation buffer (due to it not working on my graphics card). Here is my idea for the implementation:
- Have a fixed array of (temporarily) blank framebuffers & textures for each "blur"
- Whenever a new frame is encountered, move the first element to the end, and render to that framebuffer instead
- Render them all, first frame having 1/n opacity, second one having 1/(n / 2), etc... until the newest one having 1.
Is there any simpler/faster/more optimized way than this? Or is this the best solution?