diff --git a/cores/libretro-test-vulkan/libretro-test.c b/cores/libretro-test-vulkan/libretro-test.c index 3a226609da..554c0a7d56 100644 --- a/cores/libretro-test-vulkan/libretro-test.c +++ b/cores/libretro-test-vulkan/libretro-test.c @@ -933,6 +933,7 @@ static void vulkan_test_deinit(void) VKFUNC(vkDestroyRenderPass)(device, vk.render_pass, NULL); VKFUNC(vkDestroyPipeline)(device, vk.pipeline, NULL); + VKFUNC(vkDestroyDescriptorSetLayout)(device, vk.set_layout, NULL); VKFUNC(vkDestroyPipelineLayout)(device, vk.pipeline_layout, NULL); VKFUNC(vkFreeMemory)(device, vk.vbo.memory, NULL);