mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-02 19:12:47 +02:00
a82675b7d5
Also changes some function params, but this is ok. Some simplifications were also able to be made (ie. killing off strcmps with ==, etc).
28 lines
407 B
C++
28 lines
407 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include "VideoCommon/VideoBackendBase.h"
|
|
|
|
namespace DX11
|
|
{
|
|
|
|
class VideoBackend : public VideoBackendHardware
|
|
{
|
|
bool Initialize(void *&);
|
|
void Shutdown();
|
|
|
|
std::string GetName();
|
|
std::string GetDisplayName();
|
|
|
|
void Video_Prepare();
|
|
void Video_Cleanup();
|
|
|
|
void ShowConfig(void* parent);
|
|
|
|
void UpdateFPSDisplay(const std::string&);
|
|
unsigned int PeekMessages();
|
|
};
|
|
|
|
}
|
|
|