Files
dolphin/Source/Core/VideoBackends/Software/VideoBackend.h
T

33 lines
599 B
C++
Raw Normal View History

2015-05-24 06:32:32 +02:00
// Copyright 2011 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
#pragma once
2014-03-12 15:33:41 -04:00
#include <string>
2014-02-17 05:18:15 -05:00
#include "VideoCommon/VideoBackendBase.h"
namespace MMIO
{
class Mapping;
}
namespace SW
{
class VideoSoftware : public VideoBackendBase
{
bool Initialize(void* window_handle) override;
void Shutdown() override;
std::string GetName() const override;
std::string GetDisplayName() const override;
void Video_Prepare() override;
void Video_Cleanup() override;
2016-01-13 21:38:11 +01:00
void InitBackendInfo() override;
unsigned int PeekMessages() override;
};
}