Posts Tagged Post Processing

December 30, 2008

XNA Game Engine Tutorial #10: Post Processing

In this tutorial, we will be adding a postprocessing system to our engine. A postprocessor is an effect (.fx file) that only contains a pixel shader. It takes the current frame buffer value and applies the pixel shader to it, applying effects such as blurs, bloom, and special effects. The post processor class is called [...]