2014-02-03 14:02:17 +01: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 17:19:52 -04:00
|
|
|
class VideoBackend final : public VideoBackendBase
|
2014-02-03 14:02:17 +01:00
|
|
|
{
|
2018-10-03 23:03:22 +10:00
|
|
|
bool Initialize(const WindowSystemInfo& wsi) override;
|
2014-02-03 14:02:17 +01:00
|
|
|
void Shutdown() override;
|
|
|
|
|
|
|
|
std::string GetName() const override { return "Null"; }
|
2019-07-27 15:50:41 -04:00
|
|
|
std::string GetDisplayName() const override;
|
2016-01-13 21:38:11 +01:00
|
|
|
void InitBackendInfo() override;
|
2014-02-03 14:02:17 +01:00
|
|
|
};
|
2018-10-03 23:03:13 +10:00
|
|
|
} // namespace Null
|