From 9b64e0b065d81fc8216087d059420f6047432a08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hatvani=20Tam=C3=A1s?= Date: Tue, 17 Mar 2026 11:20:30 +0100 Subject: [PATCH] finished imguilayer end function --- SakuraCore/src/imguilayer.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/SakuraCore/src/imguilayer.cpp b/SakuraCore/src/imguilayer.cpp index f9e224c..acc48d4 100644 --- a/SakuraCore/src/imguilayer.cpp +++ b/SakuraCore/src/imguilayer.cpp @@ -42,5 +42,10 @@ void ImGuiLayer::End() { Application &app = Application::Get(); io.DisplaySize = ImVec2((float)app.GetWindowData().width, (float)app.GetWindowData().height); + + ImGui::Render(); + ImGui_ImplSDLRenderer3_RenderDrawData(ImGui::GetDrawData(), Application::Get().GetSDLRenderer()); + ImGui::EndFrame(); } + } // namespace SakuraVNE