I'm using XNA 3.1, porting a WP7 game to Zune HD.
I want to draw my stuff on a (rotated) render target, so I create (in LoadContent):
renderTarget = new RenderTarget2D(manager.GraphicsDevice,
graphics.GraphicsDevice.Viewport.Height, graphics.GraphicsDevice.Viewport.Width,
1, graphics.GraphicsDevice.PresentationParameters.BackBufferFormat);
My draw method looks as following:
graphics.GraphicsDevice.SetRenderTarget(0, renderTarget);
SpriteBatch tempSpriteBatch = new SpriteBatch(graphics.GraphicsDevice);
tempSpriteBatch.Begin();
// draw stuff on tempSpriteBatch
tempSpriteBatch.End();
graphics.GraphicsDevice.SetRenderTarget(0, null);
spriteBatch.Draw(renderTarget.GetTexture(), new Vector2(136, 240), null, Color.White,
MathHelper.PiOver2,
new Vector2(240, 136), 1f, SpriteEffects.None, 0);
But after all this, I get a cut-off screen, my contents are only drawn on the upper-left quarter (or so) of the screen. What am I doing wrong?