| 973 | //------------------------MACOS_MVK-------------------------- |
| 974 | #ifdef VK_USE_PLATFORM_MACOS_MVK |
| 975 | static void AppCreateMacOSWindow(AppInstance &inst) { |
| 976 | inst.macos_window = CreateMetalView(inst.width, inst.height); |
| 977 | if (inst.macos_window == nullptr) { |
| 978 | THROW_ERR("Could not create a native Metal view."); |
| 979 | } |
| 980 | } |
| 981 | |
| 982 | static VkSurfaceKHR AppCreateMacOSSurface(AppInstance &inst) { |
| 983 | VkMacOSSurfaceCreateInfoMVK createInfo; |
nothing calls this directly
no outgoing calls
no test coverage detected