wip
Some checks reported errors
continuous-integration/drone/pr Build was killed

This commit is contained in:
light7734 2025-10-09 14:48:32 +03:30
parent 8bd119468c
commit 6b0a57e524
Signed by: light7734
GPG key ID: 8C30176798F1A6BA

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();
}