2014-02-03 15:02:17 +02:00
|
|
|
// Copyright 2015 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2018-06-30 11:53:24 +03:00
|
|
|
#include "Common/Common.h"
|
2014-02-03 15:02:17 +02:00
|
|
|
#include "VideoCommon/VideoBackendBase.h"
|
|
|
|
|
|
|
|
namespace Null
|
|
|
|
{
|
|
|
|
class VideoBackend : public VideoBackendBase
|
|
|
|
{
|
2018-10-03 16:03:22 +03:00
|
|
|
bool Initialize(const WindowSystemInfo& wsi) override;
|
2014-02-03 15:02:17 +02:00
|
|
|
void Shutdown() override;
|
|
|
|
|
|
|
|
std::string GetName() const override { return "Null"; }
|
2018-06-30 11:53:24 +03:00
|
|
|
std::string GetDisplayName() const override
|
|
|
|
{
|
|
|
|
// i18n: Null is referring to the null video backend, which renders nothing
|
|
|
|
return _trans("Null");
|
|
|
|
}
|
2016-01-13 22:38:11 +02:00
|
|
|
void InitBackendInfo() override;
|
2014-02-03 15:02:17 +02:00
|
|
|
};
|
2018-10-03 16:03:13 +03:00
|
|
|
} // namespace Null
|