Add imgui

This commit is contained in:
2026-06-22 03:22:13 +02:00
parent 6f679e7329
commit 331a565cc9
14 changed files with 415 additions and 15 deletions
+3 -1
View File
@@ -16,6 +16,7 @@
#include <filesystem>
#include <string>
#include "imgui.h"
#include "destrum/Util/ModelDocUtils.h"
LightKeeper::LightKeeper() : App(), renderer(meshCache, materialCache) {
@@ -385,7 +386,8 @@ void LightKeeper::customDraw() {
gfxDevice.endFrame(
cmd, drawImage, {
.clearColor = {{0.f, 0.f, 0.5f, 1.f}},
.drawImageBlitRect = glm::ivec4{}
.drawImageBlitRect = glm::ivec4{},
.imguiPass = &imguiPass,
});
}