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...
-
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...