SpexGuy / Zig-ImGui

Zig bindings for ocornut/imgui, generated using cimgui/cimgui
MIT License
92 stars 20 forks source link

Pass struct parameters as pointers, not values #4

Closed SpexGuy closed 2 years ago

SpexGuy commented 2 years ago

Zig doesn't always pass small-struct parameters to C correctly by value. Convince cimgui to generate pointers, and un-pointer them on the zig side.

SpexGuy commented 2 years ago

Don't forget to update the Color struct in template.zig, which uses one of the affected functions.

SpexGuy commented 2 years ago

Fixed in 8595dbc