dolphin/Source/Core/VideoBackends/Vulkan/VideoBackend.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
606 B
C
Raw Normal View History

2016-08-13 12:57:50 +00:00
// Copyright 2016 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
#pragma once
#include "Common/Common.h"
2016-08-13 12:57:50 +00:00
#include "VideoCommon/VideoBackendBase.h"
namespace Vulkan
{
class VideoBackend : public VideoBackendBase
{
public:
bool Initialize(const WindowSystemInfo& wsi) override;
2016-08-13 12:57:50 +00:00
void Shutdown() override;
std::string GetName() const override { return "Vulkan"; }
std::string GetDisplayName() const override { return _trans("Vulkan"); }
2016-08-13 12:57:50 +00:00
void InitBackendInfo() override;
void PrepareWindow(WindowSystemInfo& wsi) override;
2016-08-13 12:57:50 +00:00
};
} // namespace Vulkan