2014-02-03 13:02:17 +00:00
|
|
|
// Copyright 2015 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2014-02-03 13:02:17 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "VideoCommon/VideoBackendBase.h"
|
|
|
|
|
|
|
|
namespace Null
|
|
|
|
{
|
2019-07-27 21:19:52 +00:00
|
|
|
class VideoBackend final : public VideoBackendBase
|
2014-02-03 13:02:17 +00:00
|
|
|
{
|
2020-09-06 10:56:45 +00:00
|
|
|
public:
|
2018-10-03 13:03:22 +00:00
|
|
|
bool Initialize(const WindowSystemInfo& wsi) override;
|
2014-02-03 13:02:17 +00:00
|
|
|
void Shutdown() override;
|
|
|
|
|
2020-09-06 10:56:45 +00:00
|
|
|
std::string GetName() const override { return NAME; }
|
2019-07-27 19:50:41 +00:00
|
|
|
std::string GetDisplayName() const override;
|
2023-03-26 00:16:53 +00:00
|
|
|
void InitBackendInfo(const WindowSystemInfo& wsi) override;
|
2020-09-06 10:56:45 +00:00
|
|
|
|
|
|
|
static constexpr const char* NAME = "Null";
|
2014-02-03 13:02:17 +00:00
|
|
|
};
|
2018-10-03 13:03:13 +00:00
|
|
|
} // namespace Null
|