Bloom effect added, will have to see if it needs improving. Also added HDR colors and gamma correction.

This commit is contained in:
Tleety
2016-01-21 12:02:28 +01:00
parent 86824f1b1f
commit 983f90504d
16 changed files with 398 additions and 105 deletions
@@ -0,0 +1,15 @@
#ifndef DrawBloomPassState_h__
#define DrawBloomPassState_h__
#include "Rendering/RenderState.h"
class DrawBloomPassState : public RenderState
{
public:
DrawBloomPassState();
~DrawBloomPassState();
private:
};
#endif