dolphin/Source/Core/VideoBackends/D3D/VideoBackend.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
639 B
C
Raw Normal View History

2015-05-24 06:32:32 +02:00
// Copyright 2011 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
#pragma once
#include <string>
#include "VideoCommon/VideoBackendBase.h"
namespace DX11
{
class VideoBackend : public VideoBackendBase
{
2019-03-09 14:31:36 +01:00
public:
bool Initialize(const WindowSystemInfo& wsi) override;
2014-03-11 06:55:00 +01:00
void Shutdown() override;
2014-03-11 06:55:00 +01:00
std::string GetName() const override;
std::string GetDisplayName() const override;
std::optional<std::string> GetWarningMessage() const override;
void InitBackendInfo() override;
2019-03-09 14:31:36 +01:00
static constexpr const char* NAME = "D3D";
2019-03-09 14:31:36 +01:00
private:
void FillBackendInfo();
};
} // namespace DX11