mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 13:57:57 -07:00
d79aeaa1e9
We're past 5.0 now, so there is no need to look for old inis.
26 lines
595 B
C++
26 lines
595 B
C++
// Copyright 2015 Dolphin Emulator Project
|
|
// Licensed under GPLv2+
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include "VideoCommon/VideoBackendBase.h"
|
|
|
|
namespace Null
|
|
{
|
|
class VideoBackend : public VideoBackendBase
|
|
{
|
|
bool Initialize(void* window_handle) override;
|
|
void Shutdown() override;
|
|
|
|
std::string GetName() const override { return "Null"; }
|
|
std::string GetDisplayName() const override { return "Null"; }
|
|
void Video_Prepare() override;
|
|
void Video_Cleanup() override;
|
|
|
|
void InitBackendInfo() override;
|
|
|
|
unsigned int PeekMessages() override { return 0; }
|
|
};
|
|
}
|