suppress some warnings

This commit is contained in:
ohyzha
2025-03-05 13:34:48 +02:00
parent efcee95158
commit c5a0c52530
21 changed files with 34 additions and 36 deletions

View File

@@ -34,7 +34,7 @@ namespace OpenVulkano::Vulkan
throw std::runtime_error("The provided window is not compatible with Vulkan.");
}
context.Init(graphicsAppManager, vulkanWindow);
for (int i = 0; i < context.swapChain.GetImageCount(); i++)
for (uint32_t i = 0; i < context.swapChain.GetImageCount(); i++)
{
waitSemaphores.emplace_back();
vk::Semaphore sema = context.device->device.createSemaphore({});