Tagged Questions
0
votes
1answer
195 views
How do I clear a specific render target when more than one are set? Or how do I keep the depth but clear the color?
Let's say I set two render targets
GraphicsDevice.SetRenderTargets(rt0, rt1);
If I call
GraphicsDevice.Clear(Color.Transparent);
both render targets will be cleared.
Therefore, how can I clear a ...