Hi all!
I'm trying to make a motion blur effect, just as in the sample provided with the DirectX sdk. I've read it, but it's too complicated.
I just want to blur every 2 frames. E.g.: if the order of the rendered frames would be 1,2,3,4,5 ... I need it to be 6,7,8,9 (6 is the blured frame resulted by overlapping frames 1 and 2; 7 is from 2 and 3; 8 is from 3 and 4..... and so on....)
How do I do this?