vblanco20-1 / vulkan-guide

Introductory guide to vulkan.
https://vkguide.dev/
MIT License
940 stars 213 forks source link

Allocate transfer command buffer ahead of time and re-use #51

Closed cdgiessen closed 2 years ago

cdgiessen commented 2 years ago

The old version was leaking command buffer handles because vkResetCommandPool does not free the allocated command buffers. Now we simply create one ahead of time and re-use it over and over.