2013-04-18 03:29:41 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "VideoBackends/OGL/GLUtil.h"
|
|
|
|
#include "VideoCommon/VideoCommon.h"
|
2009-07-06 02:10:26 +00:00
|
|
|
|
2011-01-29 20:16:51 +00:00
|
|
|
namespace OGL
|
|
|
|
{
|
|
|
|
|
2009-07-06 02:10:26 +00:00
|
|
|
namespace PostProcessing
|
|
|
|
{
|
|
|
|
|
|
|
|
void Init();
|
|
|
|
void Shutdown();
|
|
|
|
|
2013-03-07 16:00:11 +00:00
|
|
|
void BindTargetFramebuffer();
|
|
|
|
void BlitToScreen();
|
|
|
|
void Update(u32 width, u32 height);
|
|
|
|
|
2009-07-06 02:10:26 +00:00
|
|
|
void ReloadShader();
|
2013-03-07 16:00:11 +00:00
|
|
|
|
|
|
|
void ApplyShader();
|
2009-07-06 02:10:26 +00:00
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2011-01-29 20:16:51 +00:00
|
|
|
} // namespace
|