The GraphicsDevice is the object which FlatRedBall interacts with. Since FlatRedBall does rendering automatically, most users will not need to interact with this object.
You may want to work with the GraphicsDevice in the following scenarios:
When using DrawableBatches.
When using render targets.
Microsoft.Xna.Framework.Graphics.GraphicsDevice.SetRenderTarget
Did this article leave any questions unanswered? Post any question in our forums for a rapid response.
The RenderState contains a variety of settings which can change now rendering is performed. FlatRedBall automatically sets RenderState values appropriately when drawing different types of objects, but users may need to modify RenderStates when using DrawableBatches.
The SetRenderTarget function can be used to specify whether rendering will happen on a RenderTarget (if a non-null value is passed) or directly to the screen (if null is passed). By default no render target is set, which means all rendering appears on-screen. Rendering directly to the screen is also referred to as rendering to the back buffer. Setting render targets can be used for a number of reasons:
To create a screen shot of the game to be used elsewhere at runtime
To save a screen shot to disk
To perform post processing or screen distortion
Note that SetRenderTarget must be called prior to performing any rendering. Typically this means setting the render target and either:
Using FlatRedBallServices.Draw to render everything currently in FlatRedBall to the RenderTarget
Explicitly calling Renderer.DrawCamera to render a camera to the render target.
Alternatively, RenderTarget rendering in FlatRedBall can be performed using Layers with RenderTargets. For more information, see the Layer.RenderTarget page.
Rendering to a RenderTarget enables you to use the resulting RenderTarget as a Texture2D, which can then be re-rendered to the screen. This can be done for a number of reasons:
To perform post-processing (modifications on the scene after it has been rendered such as bloom or blur)
To render to a portion of the screen then scale it up to make your game run more efficiently
Add the following at Game1's Class scope:
Add the following to Game1's Initialize. Be sure to add this after GeneratedInitialize();
so that your DestinationRectangle assignment overrides the assignment in generated code:
Modify Game1's Draw method:
This example shows how to render to a render target, then how to save it to disk when pressing the space bar:
Add the at class scope:
Add the following to CustomInitialize:
Add the following to Draw: