15 lines
197 B
C++
15 lines
197 B
C++
#ifndef SSAOPassState_h__
|
|
#define SSAOPassState_h__
|
|
|
|
#include "Rendering/RenderState.h"
|
|
|
|
class SSAOPassState : public RenderState
|
|
{
|
|
public:
|
|
SSAOPassState();
|
|
~SSAOPassState();
|
|
private:
|
|
|
|
};
|
|
|
|
#endif |