Add app packaging for macOS

This commit is contained in:
Wojtek Figat
2022-01-13 18:19:49 +01:00
parent 5d7f8e2df9
commit 08bebc0f89
5 changed files with 175 additions and 10 deletions

View File

@@ -1084,7 +1084,11 @@ GPUDevice* GPUDeviceVulkan::Create()
if (result == VK_ERROR_INCOMPATIBLE_DRIVER)
{
// Missing driver
Platform::Fatal(TEXT("Cannot find a compatible Vulkan driver.\nPlease look at the Getting Started guide for additional information."));
#if PLATFORM_APPLE_FAMILY
Platform::Fatal(TEXT("Cannot find a compatible Metal driver."));
#else
Platform::Fatal(TEXT("Cannot find a compatible Vulkan driver."));
#endif
return nullptr;
}
if (result == VK_ERROR_EXTENSION_NOT_PRESENT)