Revert "Vulkan: Show backend as Vulkan (MoltenVK) on macOS"

This commit is contained in:
spycrab 2019-03-07 02:05:59 +01:00 committed by GitHub
parent 668b7eec8f
commit f72652f690
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 8 deletions

View File

@ -16,14 +16,7 @@ public:
void Shutdown() override; void Shutdown() override;
std::string GetName() const override { return "Vulkan"; } std::string GetName() const override { return "Vulkan"; }
std::string GetDisplayName() const override std::string GetDisplayName() const override { return _trans("Vulkan"); }
{
#ifdef __APPLE__
return _trans("Vulkan (MoltenVK)");
#else
return _trans("Vulkan");
#endif
}
void InitBackendInfo() override; void InitBackendInfo() override;
void PrepareWindow(const WindowSystemInfo& wsi) override; void PrepareWindow(const WindowSystemInfo& wsi) override;
}; };