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
|
|
|
|
|
|
|
|
#include "VideoCommon/VideoBackendBase.h"
|
|
|
|
|
|
|
|
namespace Null
|
|
|
|
{
|
2019-07-28 00:19:52 +03:00
|
|
|
class VideoBackend final : public VideoBackendBase
|
2014-02-03 15:02:17 +02:00
|
|
|
{
|
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"; }
|
2019-07-27 22:50:41 +03:00
|
|
|
std::string GetDisplayName() const override;
|
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
|