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

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

29 lines
616 B
C
Raw Normal View History

2015-05-24 04:32:32 +00:00
// Copyright 2011 Dolphin Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2015-05-24 04:32:32 +00:00
#pragma once
#include <string>
#include "VideoCommon/VideoBackendBase.h"
namespace DX11
{
class VideoBackend : public VideoBackendBase
{
2019-03-09 13:31:36 +00:00
public:
bool Initialize(const WindowSystemInfo& wsi) override;
2014-03-11 05:55:00 +00:00
void Shutdown() override;
2014-03-11 05:55:00 +00:00
std::string GetName() const override;
std::string GetDisplayName() const override;
std::optional<std::string> GetWarningMessage() const override;
void InitBackendInfo() override;
2019-03-09 13:31:36 +00:00
static constexpr const char* NAME = "D3D";
2019-03-09 13:31:36 +00:00
private:
void FillBackendInfo();
};
} // namespace DX11