1
0
Fork 0
mirror of https://github.com/ocornut/imgui.git synced 2026-01-11 00:04:24 +00:00

Backends: Vulkan: Make descriptor pool optional (#8172, #4867)

Comments/amends by ocornut
This commit is contained in:
Arseny Kapoulkine 2024-11-22 07:40:30 +09:00 committed by ocornut
parent 9b27329437
commit 61ab94d553
3 changed files with 42 additions and 8 deletions

View file

@ -59,6 +59,9 @@ Other changes:
- Tools: binary_to_compressed_c: added -u8/-u32/-base85 export options.
- Demo: example tree used by Property Editor & Selection demos properly freed
on application closure. (#8158) [@Legulysse]
- Backends: Vulkan: Make user-provided descriptor pool optional. As a convenience,
when setting init_info->DescriptorPoolSize then the backend will create and manage
one itself. (#8172, #4867) [@zeux]
- Examples: Win32+DX12: Using a basic free-list allocator to manage multiple
SRV descriptors.