imgui icon indicating copy to clipboard operation
imgui copied to clipboard

ImGui bindings for Nim via cimgui

Results 5 imgui issues
Sort by recently updated
recently updated
newest added

I added a Nim script to patch cimgui and build `libcimgui.a`. However, I don't know how to run this script on build. (I did it manually and it worked fine)

Edited `imgui.nim`: - `ImVector.data: UncheckedArray[T]` -> `ptr UncheckedArray[T]` - `ImDrawList.cmdLists: UncheckedArray[ptr ImDrawList]` -> `ptr UncheckedArray[ptr ImDrawList]` ## Usage Example ```nim import nimgl/imgui, nimgl/imgui/[impl_opengl, impl_glfw] import nimgl/[opengl, glfw] proc main() =...

Today it's impossible to use all constructor functions, I modified the generator to fix this. Actually I needed to use `ImGuiTextFilter` to filter a list and I found no way...

Update to 1.89.9 ImGui / CImGui. Version tag 1.89.9.x : x is my local management number, so git tag is 1.89.9.4 so far.

Adds support for static linking with .o files compiled by g++. `-d:cimguiStaticCgcc` and `--gcc.linkerexe:g++` need to be passed to nim. The cpp files will be compiled by g++ and saved...