Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

in XNA, I need to get a reference to the RenderTarget(2D) of the BackBuffer in order to draw it to a texture or change its Usage to Usage.PreserveContents, is there any method which allows me to do that?

share|improve this question
Could you just change your drawing code to draw to a texture that has preserve contents, then draw that to the backbuffer each frame? That should be faster. I vaguely remember that in XNA 4.0 it's pretty slow to get the backbuffer texture (if you can at all). – George Duckett Dec 11 '11 at 13:12

1 Answer

up vote 1 down vote accepted

Check out this blog post about what happened to ResolveBackBuffer in XNA 4.0.

Basically, you should just use render targets.

If you really need the back-buffer, you can use GetBackBufferData. But it only works on the HiDef profile.

If you need to change the RenderTargetUsage of the back-buffer, you need to respond to PreparingDeviceSettings and modify GraphicsDeviceInformation.PresentationParameters.RenderTargetUsage. (This was explained in this blog post.)

Note that changing this away from the default is not recommended. The correct solution is to fix the order in which you set and draw to your render targets.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.