mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 22:09:19 -07:00
28 lines
359 B
C
28 lines
359 B
C
|
|
||
|
#ifndef DX11_VIDEO_BACKEND_H_
|
||
|
#define DX11_VIDEO_BACKEND_H_
|
||
|
|
||
|
#include "VideoBackendBase.h"
|
||
|
|
||
|
namespace DX11
|
||
|
{
|
||
|
|
||
|
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
|