ci(amd64/clang/lsan): fix leak sanitizer errors #57

Merged
light7734 merged 35 commits from ci/leak_sanatizer_fix into main 2025-10-09 14:08:14 +00:00
Showing only changes of commit 6b0a57e524 - Show all commits

View file

@ -89,8 +89,8 @@ Swapchain::~Swapchain()
try
{
m_device->wait_idle();
std::cout << "DESTROYING SWAPCHAIN" << std::endl;
log_dbg("DESTROY SWAPCHAIN @ {:x}", std::bit_cast<size_t>(m_swapchain));
log_dbg("DESTROYING SWAPCHAIN @ {:x}", std::bit_cast<size_t>(m_swapchain));
std::this_thread::sleep_for(std::chrono::seconds { 10 });
m_device->destroy_swapchain(m_swapchain);
m_device->wait_idle();
}