Pascal Thomet
Pascal Thomet
See ImGui [new PR](https://github.com/ocornut/imgui/pull/7927) where I propose the integration of plutosvg. @sammycage : It seems that you did some more performance improvement, since the application now starts in 0.45 seconds...
Hi @EDesmondo Since you have OpenCV installed, `add_subdirectory(path/to/immvision)` should be enough: point at the root of immvision, not to a subfolder like src or src_all_in_one. Ping me if you need...
Hi, Thanks for your message. Actually, Android is not my cup of tea either. I'd be interested if you are willing to share a working piece of code to toggle...
Thanks, I labeled this as a faq issue, so that other users can find it.
Hello, This issue was already raised here: https://github.com/pthom/imgui_bundle/issues/239 I was unlucky enough that when I published the 1.5.2 release, the Windows CI GitHub Runners were buggy in certain case of...
Hello, It will not be possible to access nanovg from a pure python backend. After a long investigation, I found that any call to openGL functions will fail on the...
Hello, This issue is due to imgui-node-editor: popups may cause issue inside the node editor (and the context menu is rendered inside a popup). See related imgui-node-editor issue: https://github.com/thedmd/imgui-node-editor/issues/242 ImGui...
freetype is used by imgui to improve font rendering. And freetype uses Brotli. You might try to compile from source and comment out those lines: https://github.com/pthom/imgui_bundle/blob/f8db311b9c0828330e6b277238243ae3ccb8db76/CMakeLists.txt#L167-L168
Hi Dustin, Building Python libraries with native linked libraries is always complex. Below is an analysis of what I see. ### Main CMakeLists: in the main CMakeLists of imgui_bundle, we...
I'm trying two patches: * https://github.com/pthom/imgui_bundle/commit/2bbce5b3b91aa8627f47cc2d3151306930faa805: disable the use of system libraries. CMake is happily ignoring this, and still tries to link brotli, harfbuzz from homebrew... * https://github.com/pthom/hello_imgui/commit/67e0cc8b2e20ec5f31e4ac9759d24448c939ebec: build freetype...