mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 13:57:57 -07:00
f2759ffe65
All it did was raise complexity.
30 lines
525 B
C++
30 lines
525 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include "VideoCommon/VideoBackendBase.h"
|
|
|
|
namespace DX11
|
|
{
|
|
|
|
class VideoBackend : public VideoBackendHardware
|
|
{
|
|
bool Initialize(void *&) override;
|
|
void Shutdown() override;
|
|
|
|
std::string GetName() const override;
|
|
std::string GetDisplayName() const override;
|
|
|
|
void Video_Prepare() override;
|
|
void Video_Cleanup() override;
|
|
|
|
void ShowConfig(void* parent) override;
|
|
|
|
void UpdateFPSDisplay(const std::string&) override;
|
|
unsigned int PeekMessages() override;
|
|
|
|
void* m_window_handle;
|
|
};
|
|
|
|
}
|
|
|