diff options
| author | Andre Weissflog <floooh@gmail.com> | 2025-12-05 17:38:40 +0100 |
|---|---|---|
| committer | Andre Weissflog <floooh@gmail.com> | 2025-12-05 17:38:40 +0100 |
| commit | 946d39c25c924480d2fe5ba80ac30a0b2d3aa8d5 (patch) | |
| tree | 39a9824efaea61527bfc80c637c5923d7267f63f | |
| parent | 5db0ebd6126026cf8c1ff169e75f3d6926e7d27c (diff) | |
update changelog (https://github.com/floooh/sokol/pull/1394)
| -rw-r--r-- | CHANGELOG.md | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 78851c06..4b9d95fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ ## Updates +### 05-Dec-2025 + +- sokol_gfx_imgui.h: a breaking update to harmonize the API with the other sokol + headers, and make the sokol_gfx_imgui.h header more language-binding-friend: + - all 'internal state' structs have been moved from the public API into the + implementation block + - the 'context arg' has been removed from the public API functions + - `sgimgui_init()` has been renamed to `sgimgui_setup()` + - `sgimgui_discard()` has been renamed to `sgimgui_shutdown()` + - optional function to draw inidividual menu items have been added + (as alternative to the all-in-one `sgimgui_draw_menu()`) + - the optional window drawing functions now take a `title` argument + + PR: https://github.com/floooh/sokol/pull/1394 + ### 04-Dev-2025 - sokol_gfx.h: a minor breaking change for querying runtime statistics: the function |