mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-12 00:59:11 +01:00
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
|