2016-08-13 06:57:50 -06:00
|
|
|
// Copyright 2016 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2018-06-30 02:53:24 -06:00
|
|
|
#include "Common/Common.h"
|
2016-08-13 06:57:50 -06:00
|
|
|
#include "VideoCommon/VideoBackendBase.h"
|
|
|
|
|
|
|
|
namespace Vulkan
|
|
|
|
{
|
|
|
|
class VideoBackend : public VideoBackendBase
|
|
|
|
{
|
2017-01-29 05:14:09 -07:00
|
|
|
public:
|
2018-10-03 07:03:22 -06:00
|
|
|
bool Initialize(const WindowSystemInfo& wsi) override;
|
2016-08-13 06:57:50 -06:00
|
|
|
void Shutdown() override;
|
|
|
|
|
|
|
|
std::string GetName() const override { return "Vulkan"; }
|
2019-03-06 18:05:59 -07:00
|
|
|
std::string GetDisplayName() const override { return _trans("Vulkan"); }
|
2016-08-13 06:57:50 -06:00
|
|
|
void InitBackendInfo() override;
|
2018-05-31 05:23:45 -06:00
|
|
|
void PrepareWindow(const WindowSystemInfo& wsi) override;
|
2016-08-13 06:57:50 -06:00
|
|
|
};
|
2018-10-03 07:03:13 -06:00
|
|
|
} // namespace Vulkan
|