Render buffer to texture2D object in XNA - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T21:57:07Zhttp://stackoverflow.com/feeds/question/1043071http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1043071/render-buffer-to-texture2d-object-in-xna0Render buffer to texture2D object in XNAMichael Allen2009-06-25T10:12:27Z2009-07-01T18:36:08Z
<p>In XNA is there a way to render the contents of a spriteBatch after drawing to a texture object before rendering to the screen?</p>
http://stackoverflow.com/questions/1043071/render-buffer-to-texture2d-object-in-xna/1044950#10449501Answer by Hexxagonal for Render buffer to texture2D object in XNAHexxagonal2009-06-25T16:39:52Z2009-06-25T16:39:52Z<p>You'll need to switch your render target for the spritebatch and then grab the texture out of it. This MSDN article explains it pretty well.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/bb976073.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb976073.aspx</a></p>
http://stackoverflow.com/questions/1043071/render-buffer-to-texture2d-object-in-xna/1050717#10507171Answer by LaZe for Render buffer to texture2D object in XNALaZe2009-06-26T19:08:25Z2009-06-26T19:08:25Z<p>As Hexxagonal already answered, yes you can. But you might get into trouble, if you are using sprites with translucency. The reason is, that two overlapping sprites wont end up with the right alphavalue in your offscreen rendertarget.</p>
<p>To make things right you will have to make your own SpriteBatch and start using premultiplied alpha.</p>
http://stackoverflow.com/questions/1043071/render-buffer-to-texture2d-object-in-xna/1070663#10706630Answer by Joel Martinez for Render buffer to texture2D object in XNAJoel Martinez2009-07-01T18:36:08Z2009-07-01T18:36:08Z<p>Here's an additional link to Shawn Hargreaves' excellent blog where he talks about rendertarget semantics:<br />
<a href="http://blogs.msdn.com/shawnhar/archive/2007/02/04/xna-rendertarget-semantics.aspx" rel="nofollow">http://blogs.msdn.com/shawnhar/archive/2007/02/04/xna-rendertarget-semantics.aspx</a></p>