Backends: Vulkan: fixed validation errors during window detach in multi-viewport mode. (#8600, #8176)

This commit is contained in:
ChrisTom-94
2025-05-07 15:19:45 +02:00
committed by ocornut
parent 64a5e27486
commit bbc89b6391
2 changed files with 82 additions and 0 deletions

View File

@@ -121,6 +121,9 @@ Other changes:
specifying a pointer to data that gets out of scope. (#8282)
- Backends: Vulkan: Load dynamic rendering functions using vkGetDeviceProcAddr()
+ try both non-KHR and KHR versions. (#8600, #8326, #8365) [@ChrisTom-94]
- Backends: Vulkan: fixed validation errors in window create/resize helpers used by examples
and by multi-viewports implementation, which would typically trigger errors while detaching
secondary viewports. (#8600, #8176) [@ChrisTom-94]
- Examples: DirectX12+Win32: also test for IsIconic() for sleeping since we don't seem to
get a DXGI_STATUS_OCCLUDED signal when minimized. (#8603) [@dooann]