forked from dolphin-emu/dolphin
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			552 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			552 B
		
	
	
	
		
			C++
		
	
	
	
	
	
// Copyright 2016 Dolphin Emulator Project
 | 
						|
// Licensed under GPLv2+
 | 
						|
// Refer to the license.txt file included.
 | 
						|
 | 
						|
#pragma once
 | 
						|
 | 
						|
#include "Common/Common.h"
 | 
						|
#include "VideoCommon/VideoBackendBase.h"
 | 
						|
 | 
						|
namespace Vulkan
 | 
						|
{
 | 
						|
class VideoBackend : public VideoBackendBase
 | 
						|
{
 | 
						|
public:
 | 
						|
  bool Initialize(const WindowSystemInfo& wsi) override;
 | 
						|
  void Shutdown() override;
 | 
						|
 | 
						|
  std::string GetName() const override { return "Vulkan"; }
 | 
						|
  std::string GetDisplayName() const override { return _trans("Vulkan"); }
 | 
						|
  void InitBackendInfo() override;
 | 
						|
};
 | 
						|
}  // namespace Vulkan
 |