2014-02-03 13:02:17 +00:00
|
|
|
// Copyright 2015 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#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;
|
2016-01-13 20:38:11 +00:00
|
|
|
void InitBackendInfo() 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
|