2015-05-24 06:32:32 +02:00
|
|
|
// Copyright 2011 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2014-02-10 13:54:46 -05:00
|
|
|
#pragma once
|
2011-01-31 01:28:32 +00:00
|
|
|
|
2014-03-12 15:33:41 -04:00
|
|
|
#include <string>
|
2014-02-17 05:18:15 -05:00
|
|
|
#include "VideoCommon/VideoBackendBase.h"
|
2011-01-31 01:28:32 +00:00
|
|
|
|
|
|
|
namespace DX11
|
|
|
|
{
|
2016-01-12 09:35:24 +01:00
|
|
|
class VideoBackend : public VideoBackendBase
|
2011-01-31 01:28:32 +00:00
|
|
|
{
|
2019-03-09 23:31:36 +10:00
|
|
|
public:
|
2018-10-03 23:03:22 +10:00
|
|
|
bool Initialize(const WindowSystemInfo& wsi) override;
|
2014-03-11 06:55:00 +01:00
|
|
|
void Shutdown() override;
|
2011-01-31 01:28:32 +00:00
|
|
|
|
2014-03-11 06:55:00 +01:00
|
|
|
std::string GetName() const override;
|
|
|
|
std::string GetDisplayName() const override;
|
2019-07-21 17:29:08 +02:00
|
|
|
std::optional<std::string> GetWarningMessage() const override;
|
2011-01-31 01:28:32 +00:00
|
|
|
|
2016-01-13 21:38:11 +01:00
|
|
|
void InitBackendInfo() override;
|
2019-03-09 23:31:36 +10:00
|
|
|
|
2020-09-06 12:56:45 +02:00
|
|
|
static constexpr const char* NAME = "D3D";
|
|
|
|
|
2019-03-09 23:31:36 +10:00
|
|
|
private:
|
|
|
|
void FillBackendInfo();
|
2011-01-31 01:28:32 +00:00
|
|
|
};
|
2018-10-03 23:03:13 +10:00
|
|
|
} // namespace DX11
|