You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 29, 2021. It is now read-only.
The Vulkan spec here states that calling vkGetInstanceProcAddr with a NULL instance must return NULL for all but a few functions listed out in the spec. As such, a conforming implementation is required to return null here (though no implementation actually does).
The fix is to look up the correct VkInstance handle associate with the VkPhysicalDevice handle that is passed by this function and to pass that instance handle to vkGetInstanceProcAddr.