Showing related tags and posts across the entire site.
-
This is implementation (one of the many possible) of Screen Space Ambient Occlusion post processor. It's only for deferred render. SssaPostProcessor class public class SsaoPostProcess : BaseRenderTargetPostProcessor { private Texture2D m_RandomTexture; private Effect m_SsaoEffect; private Effect...
-
A simple "retro style" low-res simulator (if you really want to reproduce that Commodore 64 feel but your graphics card won't allow it). Use the SimulatedResolution property to set the desired resolution (can be changed on-the-fly to produce a nice animated pixelating effect). The FX file...
-
Here's one way to make a motion blur effect through a post processor with sunburn. This particular approach seems to cause artifacts when the view is on some angles with large surfaces when blurring view movement. This makes view movement blurring quite good if the camera has enough distance from...
-
Since current SunBurn version doesn't provide a simple Bloom post processor effect, I thought I could share my own implementation with the community. This is based on the Xna Bloom sample found on the official website. NB: This is an updated article as my previous implementation wasn't blooming...