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