Updates to Dear ImGui v1.92.5-docking

This commit is contained in:
Mason Remaley 2026-01-16 01:39:35 -08:00
parent 514e1e35e6
commit 5a6af5bf23
14 changed files with 11515 additions and 9345 deletions

View file

@ -48,7 +48,7 @@ Note that you never need to do this as a user of the library, unless you're maki
2. Add `python3` to your path
3. Set `$DEAR_BINDINGS` to a path to an appropriate version of [dear_bindings](https://github.com/dearimgui/dear_bindings) for the version of Dear ImGUI you're updating to
4. Run `zig build dear_bindings`. Output may need tweaks, glance over diff.
5. Run `zig build generate` to see if the generator still works. If it fails, you're probably missing values in an enumeration, `std.json` does not provide helper errors for this at the time of writing, the easiest way to debug this is to comment out the actual generation code, and all fields in `Header`, adding them back until you figure out which are causing the issue.
5. Run `zig build generate -- ...` to see if the generator still works. If it fails, you're probably missing values in an enumeration, `std.json` does not provide helper errors for this at the time of writing, the easiest way to debug this is to comment out the actual generation code, and all fields in `Header`, adding them back until you figure out which are causing the issue.
6. Test the bindings from a real Zig program that imports Dear ImGUI.
## Known differences