Forward plus render pass now removed from Renderer.cpp to it's own class.

This commit is contained in:
Tleety
2016-01-06 11:32:42 +01:00
parent eb69e03e82
commit e510f2b88c
7 changed files with 146 additions and 97 deletions
@@ -0,0 +1,15 @@
#ifndef DrawFinalPassState_h__
#define DrawFinalPassState_h__
#include "Rendering/RenderState.h"
class DrawFinalPassState : public RenderState
{
public:
DrawFinalPassState();
~DrawFinalPassState();
private:
};
#endif