Pascal Thomet
Pascal Thomet
I don't understand your question (there is none in your message, in fact). Does your work around work?
Hello, I come back to this question after a few months, sorry for the delay. I understand that you needed a way to translate the glyph ranges coming from Dear...
Hi, To get a successful export, you will need to do this: ``` engine = hello_imgui.get_imgui_test_engine() engine.io.export_results_filename_set("output.xml") engine.io.export_results_format = imgui.test_engine.TestEngineExportFormat.j_unit_xml ``` This issue took me half a day of work....
Hello, Integrating ImGui TestEngine directly from python, and without using HelloImGui and ImmApp is *very* difficult. ImGui Test Engine uses two different threads (one for the main gui, and one...
> Can you document this, perhaps in the docs that come up for imgui.test_engine.create_context() and imgui.test_engine.start()? Yes, see https://github.com/pthom/imgui_bundle/commit/20eecc036b6e6e5d3affd2058feae46bd2ef0d63 > If i understand correctly, runner_params.use_imgui_test_engine can only be set before...
The patch is [already upstream](https://github.com/ocornut/imgui_test_engine/pull/41)
See `backgroundColor` inside [imguiwindowparams](https://pthom.github.io/hello_imgui/book/doc_params.html#imguiwindowparams) ``` runner_params = hello_imgui.RunnerParams() runner_params.imgui_window_params.background_color = (0.0, 0.0, 0.0, 1.0) addons = immapp.AddOnsParams() addons.with_markdown = True immapp.run(runner_params, addons) ``` You should not use gl calls inside...
Now, I understand the issue better: by default Hello ImGui will provide a default `ImGui Window` that occupies the full `Application Window`. This differs from ImGui's default behavior, but can...
Hi Anthony, > I'd just like to say what an amazing job you have done with this project @pthom. These are the best and most complete wrappings of Dear ImGui...
Hi, If you look at the section [Python bindings: update & adding new libraries](https://pthom.github.io/imgui_bundle/devel_docs/bindings.html) of the [developer docs](https://pthom.github.io/imgui_bundle/devel_docs.html), you should find some useful information. If you choose to do it,...