mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 13:57:57 -07:00
fbaf965995
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6996 8ced0084-cf51-0410-be5f-012b33b47a6e
28 lines
356 B
C++
28 lines
356 B
C++
|
|
#ifndef OGL_VIDEO_BACKEND_H_
|
|
#define OGL_VIDEO_BACKEND_H_
|
|
|
|
#include "VideoBackendBase.h"
|
|
|
|
namespace OGL
|
|
{
|
|
|
|
class VideoBackend : public VideoBackendHLE
|
|
{
|
|
void Initialize();
|
|
void Shutdown();
|
|
|
|
std::string GetName();
|
|
|
|
void Video_Prepare();
|
|
|
|
void ShowConfig(void* parent);
|
|
|
|
void UpdateFPSDisplay(const char*);
|
|
unsigned int PeekMessages();
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|