78a1037983
DrawScreenQuad implemented and working. Started work on HDR coloring.
15 lines
253 B
C++
15 lines
253 B
C++
#ifndef DrawScreenQuadPassState_h__
|
|
#define DrawScreenQuadPassState_h__
|
|
|
|
#include "Rendering/RenderState.h"
|
|
|
|
class DrawScreenQuadPassState : public RenderState
|
|
{
|
|
public:
|
|
DrawScreenQuadPassState();
|
|
~DrawScreenQuadPassState();
|
|
private:
|
|
|
|
};
|
|
|
|
#endif |