| 999 | //------------------------METAL_EXT-------------------------- |
| 1000 | #ifdef VK_USE_PLATFORM_METAL_EXT |
| 1001 | static void AppCreateMetalWindow(AppInstance &inst) { |
| 1002 | inst.metal_window = CreateMetalView(inst.width, inst.height); |
| 1003 | if (inst.metal_window == nullptr) { |
| 1004 | THROW_ERR("Could not create a native Metal view."); |
| 1005 | } |
| 1006 | } |
| 1007 | |
| 1008 | static VkSurfaceKHR AppCreateMetalSurface(AppInstance &inst) { |
| 1009 | VkMetalSurfaceCreateInfoEXT createInfo; |
nothing calls this directly
no outgoing calls
no test coverage detected