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

23 lines
481 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 SW
{
class VideoSoftware : public VideoBackendBase
{
bool Initialize(const WindowSystemInfo& wsi) override;
void Shutdown() override;
std::string GetName() const override;
std::string GetDisplayName() const override;
2016-01-13 21:38:11 +01:00
void InitBackendInfo() override;
};
} // namespace SW