Fix Vulkan triangle test segfault on resize

The command buffer handle was not reset after being freed on window
resize, leading to a segfault when the stale handle was used.
This commit is contained in:
Camilla Löwy 2019-07-25 19:09:42 +02:00
Родитель 6abad2efd2
Коммит 65748fb8f3
2 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -199,6 +199,7 @@ skills.
- Mário Freitas
- GeO4d
- Marcus Geelnard
- Charles Giessen
- Stephen Gowen
- Kovid Goyal
- Eloi Marín Gratacós

Просмотреть файл

@ -2118,6 +2118,7 @@ static void demo_cleanup(struct demo *demo) {
if (demo->setup_cmd) {
vkFreeCommandBuffers(demo->device, demo->cmd_pool, 1, &demo->setup_cmd);
demo->setup_cmd = VK_NULL_HANDLE;
}
vkFreeCommandBuffers(demo->device, demo->cmd_pool, 1, &demo->draw_cmd);
vkDestroyCommandPool(demo->device, demo->cmd_pool, NULL);