In my project I want to use a RenderTexture in the following way:
- On the first frame I will render some stuff into a RenderTexture.
- Every frame after that I will Blit the RenderTexture over a portion of the screen (the content of the RenderTexture is going to stay constant for long periods of time - probably a couple of seconds before it needs to be changed).
While looking at the Camera.Render documentation I noticed that the content of the RenderTexture is read back into a Texture2D using ReadPixels. This confused me because if I try to Blit the RenderTexture directly it works fine.
Any ideas why I would want to copy the RenderTexture to a Texture2D before using it?