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
[VK] Fix crash if validation layers are absent (#218)
A first vkCreateInstance is called to enumerate devices and immediately
destroyed. The resulting handle is not reset to VK_NULL_HANDLE. This
means if the second vkCreateInstance fails (missing layer for ex), the
dtor will call vkDestroyInstance with an already freed instance, causing
a crash.
0 commit comments