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
|
|
|
|
|
2018-06-30 04:53:24 -04:00
|
|
|
#include "Common/Common.h"
|
2014-02-03 14:02:17 +01:00
|
|
|
#include "VideoCommon/VideoBackendBase.h"
|
|
|
|
|
|
|
|
namespace Null
|
|
|
|
{
|
|
|
|
class VideoBackend : public VideoBackendBase
|
|
|
|
{
|
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"; }
|
2018-06-30 04:53:24 -04:00
|
|
|
std::string GetDisplayName() const override
|
|
|
|
{
|
|
|
|
// i18n: Null is referring to the null video backend, which renders nothing
|
|
|
|
return _trans("Null");
|
|
|
|
}
|
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
|