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