Results 767 comments of BenBE

And another round of talking to the bot … ;-) And regarding writing PRs: I'm a embedded/backend dev. I really don't think you want me to do any frontend stuff...

Oh, hi bot. Long time no see … ;-)

Would it be possible to allow for the callback to be any `std::function`? That way the above example would reduce to: ```cpp if (ImPlot::BeginPlot("MyPlot")) { MyData my_data; auto my_lambda =...

> Not ideal, but as you can't pass member functions as the getter, I went with this for now. You can, but it's a hassle to implement … ```cpp struct...

I'd very much be interested if ImGui itself could provide std::function for its interface directly and avoid the hassle with needing a function invoker class as intermediary in between …...

> we try to honor ImGui's stance on this topic Got some link for further reading for this? TIA.

From my experience on Linux with GCC, I noticed that in most cases where the compiler is aware of all involved functions (especially with LTO) you often see the compiler...

Isn't there an mechanism in ImGUI to use the `imgui.ini` that it writes anyway?

> Not quite familiar with `imgui.ini` myself. However, dumping a simple file for your own custom use-case could be beneficial in terms of avoiding any dependency on `imgui.ini`'s behavior. Wouldn't...

Couldn't you, based on the auto-fit, let the plot determine min/max ranges for each axis and the best scaling for each one? After that you need to ensure that the...