So, since the last question, I found that my solution is to duplicate the texture to prevent reference issues. However, I'm questioning:
Color[] color = new Color[screen.Width * screen.Height];
InputRenderTarget2D.GetData(Color);
OutputRenderTarget2D.SetData(color);
For one, is this efficient when ran 60 times per second? Although it's setting 1 texture, I'm performance-paranoid and WANT to keep performance at its decent or best. Will it cause "majorly-noticable framedrops" and the like?
Second, will it boost performance that instead of creating a new Color array, I recycle one?