diff options
author | MatÃas Locatti <[email protected]> | 2022-12-02 18:32:54 -0300 |
---|---|---|
committer | GitHub <[email protected]> | 2022-12-02 18:32:54 -0300 |
commit | c043ba84675794b37c42ac47b2776dc57d63decb (patch) | |
tree | 479743223a7103a600bf162fffa0203c9f92232d /src/yuzu/bootmanager.cpp | |
parent | 9a5d8b356ac784fcfbdfaeecaea8b7e6f36f6898 (diff) | |
parent | 2956a33463df8fe97819df2b08d31834eaeed442 (diff) | |
download | yuzu-mainline-c043ba84675794b37c42ac47b2776dc57d63decb.tar.gz yuzu-mainline-c043ba84675794b37c42ac47b2776dc57d63decb.zip |
Merge pull request #9303 from liamwhite/new-vulkan-init
Vulkan: update initialization
Diffstat (limited to 'src/yuzu/bootmanager.cpp')
-rw-r--r-- | src/yuzu/bootmanager.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/yuzu/bootmanager.cpp b/src/yuzu/bootmanager.cpp index c934069dd..ccf1c50f4 100644 --- a/src/yuzu/bootmanager.cpp +++ b/src/yuzu/bootmanager.cpp @@ -267,6 +267,10 @@ static Core::Frontend::WindowSystemType GetWindowSystemType() { return Core::Frontend::WindowSystemType::X11; else if (platform_name == QStringLiteral("wayland")) return Core::Frontend::WindowSystemType::Wayland; + else if (platform_name == QStringLiteral("cocoa")) + return Core::Frontend::WindowSystemType::Cocoa; + else if (platform_name == QStringLiteral("android")) + return Core::Frontend::WindowSystemType::Android; LOG_CRITICAL(Frontend, "Unknown Qt platform!"); return Core::Frontend::WindowSystemType::Windows; |