From 2c788e478e13e000d07871872fe617327fba987b Mon Sep 17 00:00:00 2001 From: kzubatov Date: Fri, 31 Oct 2025 17:40:10 +0300 Subject: [PATCH] stupid commit to test CI --- samples/shadowmap/App.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/shadowmap/App.cpp b/samples/shadowmap/App.cpp index 6a188531..fa48e992 100644 --- a/samples/shadowmap/App.cpp +++ b/samples/shadowmap/App.cpp @@ -31,10 +31,10 @@ App::App() auto instExts = windowing.getRequiredVulkanInstanceExtensions(); renderer->initVulkan(instExts); - auto surface = mainWindow->createVkSurface(etna::get_context().getInstance()); + auto surface_ = mainWindow->createVkSurface(etna::get_context().getInstance()); renderer->initFrameDelivery( - std::move(surface), [window = mainWindow.get()]() { return window->getResolution(); }); + std::move(surface_), [window = mainWindow.get()]() { return window->getResolution(); }); // TODO: this is bad design, this initialization is dependent on the current ImGui context, but we // pass it implicitly here instead of explicitly. Beware if trying to do something tricky.