mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 05:38:50 +00:00
Vulkan: Show backend as Vulkan (MoltenVK) on macOS
This commit is contained in:
parent
b8bcfe6865
commit
a5534ec950
1 changed files with 8 additions and 1 deletions
|
@ -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;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue