mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
Vulkan: Show backend as Vulkan (MoltenVK) on macOS
This commit is contained in:
@ -16,7 +16,14 @@ 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 { return _trans("Vulkan"); }
|
std::string GetDisplayName() const override
|
||||||
|
{
|
||||||
|
#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;
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user