summaryrefslogtreecommitdiffhomepage
path: root/editor/imgui.cpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2024-10-28 03:07:00 +0100
committerStanislaw Halik <sthalik@misaki.pl>2024-10-28 08:48:29 +0100
commit5032581ffc1e29d6b139d66eaa7228c0113bed14 (patch)
tree0fa40a95cba1ceacddef4b032b40e4b605329166 /editor/imgui.cpp
parent221861499394aa8fa5c2682cafb3387ab9a3683f (diff)
wip to rebasewip22
Diffstat (limited to 'editor/imgui.cpp')
-rw-r--r--editor/imgui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/imgui.cpp b/editor/imgui.cpp
index 0e5b56cc..81ecd59c 100644
--- a/editor/imgui.cpp
+++ b/editor/imgui.cpp
@@ -312,7 +312,7 @@ void app::draw_lightmap_test(float main_menu_height)
if (ImGui::Begin("Lightmap", &is_open, flags))
{
- ImGui::Image(&shader.accum_texture(), preview_size, {0, 0}, {1, 1});
+ ImGui::Image(shader.accum_texture().id(), preview_size, {0, 0}, {1, 1});
ImGui::End();
}
else