aboutsummaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorAndre Weissflog <floooh@gmail.com>2025-10-20 12:06:06 +0200
committerAndre Weissflog <floooh@gmail.com>2025-10-20 12:06:06 +0200
commit8e17982e6ddad9e40d5fcd80438ba14cf986666c (patch)
treeee07089b984b26a525ca09e88eb8df20e91a7958 /util
parent585936e26e34ef382ce501d9b9a5bb9810338789 (diff)
sokol_gfx_imgui.h: add DEARIMGUI_VERSION to the capabilities window
Diffstat (limited to 'util')
-rw-r--r--util/sokol_gfx_imgui.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/util/sokol_gfx_imgui.h b/util/sokol_gfx_imgui.h
index 664b3cb9..d7e659ff 100644
--- a/util/sokol_gfx_imgui.h
+++ b/util/sokol_gfx_imgui.h
@@ -4471,7 +4471,8 @@ _SOKOL_PRIVATE void _sgimgui_draw_capture_panel(sgimgui_t* ctx) {
}
_SOKOL_PRIVATE void _sgimgui_draw_caps_panel(void) {
- _sgimgui_igtext("Backend: %s\n\n", _sgimgui_backend_string(sg_query_backend()));
+ _sgimgui_igtext("Backend: %s\n", _sgimgui_backend_string(sg_query_backend()));
+ _sgimgui_igtext("Dear ImGui Version: %s\n\n", IMGUI_VERSION);
sg_features f = sg_query_features();
_sgimgui_igtext("Features:");
_sgimgui_igtext(" origin_top_left: %s", _sgimgui_bool_string(f.origin_top_left));