0

如果我这样做,我会收到一个正常绘制的模型:

GraphicsDevice.Clear(Color.Black);
GraphicsDevice.BlendState = BlendState.Opaque;
GraphicsDevice.DepthStencilState = DepthStencilState.Default;
DrawModel(model, modelMatrix, transforms);

但是,如果我尝试使用渲染目标,即使没有应用任何效果,结果也会非常模糊:

GraphicsDevice.SetRenderTarget(scene);
GraphicsDevice.Clear(Color.Black);
GraphicsDevice.BlendState = BlendState.Opaque;
GraphicsDevice.DepthStencilState = DepthStencilState.Default;
DrawModel(model, modelMatrix, transforms);
GraphicsDevice.SetRenderTarget(null);

spriteBatch.Begin();
spriteBatch.Draw(scene, new Rectangle(0, 0, GraphicsDevice.Viewport.Width, GraphicsDevice.Viewport.Height), Color.White);
spriteBatch.End();

唯一的区别是渲染目标的使用。这是一张图片,左边是普通图,右边是渲染目标图。这是定义渲染目标的方式:

scene = new RenderTarget2D(GraphicsDevice, GraphicsDevice.Viewport.Width, GraphicsDevice.Viewport.Height, false, SurfaceFormat.Color, DepthFormat.None);

我也尝试过以这种方式定义它:

scene = new RenderTarget2D(device, graphics.PreferredBackBufferWidth, graphics.PreferredBackBufferHeight, false, device.DisplayMode.Format, DepthFormat.Depth24, 0, RenderTargetUsage.PlatformContents);

我在这里做错了什么?

4

1 回答 1

1

确保您使用与 BackBuffer 相同的设置。

您需要注意许多选项 - 但我不记得在使用 RenderTarget2D 时遇到过问题。

尝试使用这个(它是我使用的,对我来说效果很好):

new RenderTarget2D(GraphicsDevice, pixelWidth, pixelHeight, false, SurfaceFormat.Bgr565, DepthFormat.Depth24Stencil8); 
于 2013-09-05T18:01:16.390 回答