Render buffer to texture2D object in XNA - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T21:57:07Z http://stackoverflow.com/feeds/question/1043071 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1043071/render-buffer-to-texture2d-object-in-xna 0 Render buffer to texture2D object in XNA Michael Allen 2009-06-25T10:12:27Z 2009-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#1044950 1 Answer by Hexxagonal for Render buffer to texture2D object in XNA Hexxagonal 2009-06-25T16:39:52Z 2009-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#1050717 1 Answer by LaZe for Render buffer to texture2D object in XNA LaZe 2009-06-26T19:08:25Z 2009-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#1070663 0 Answer by Joel Martinez for Render buffer to texture2D object in XNA Joel Martinez 2009-07-01T18:36:08Z 2009-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>