macOS: MoltenVK: Pass in the layer instead of the view
Surface creation may be triggered on a thread other than the main thread. To enable this, MoltenVK also accepts the CAMetalLayer instead of the NSView. See https://github.com/KhronosGroup/MoltenVK/pull/258 Task-number: QTBUG-82600 Change-Id: I7b925210d05235baf04441682760f09fe58d8144 Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@qt.io>
This commit is contained in:
parent
b30b3248ca
commit
23fd7bdf01
@ -81,7 +81,7 @@ VkSurfaceKHR QCocoaVulkanInstance::createSurface(NSView *view)
|
||||
surfaceInfo.sType = VK_STRUCTURE_TYPE_MACOS_SURFACE_CREATE_INFO_MVK;
|
||||
surfaceInfo.pNext = nullptr;
|
||||
surfaceInfo.flags = 0;
|
||||
surfaceInfo.pView = view;
|
||||
surfaceInfo.pView = view.layer;
|
||||
|
||||
VkSurfaceKHR surface = nullptr;
|
||||
VkResult err = m_createSurface(m_vkInst, &surfaceInfo, nullptr, &surface);
|
||||
|
Loading…
Reference in New Issue
Block a user