dbr/Ben
dbr/Ben
You can neatly do `ui.style_color(imgui::StyleColor::Text)` etc to get a style colour to use for custom drawing However to do the same with a style variable (e.g window padding) seems to...
https://docs.rs/crate/imgui/0.8.1/builds/482032 ``` [INFO] [stderr] error: Package `imgui v0.8.1 (/opt/rustwide/workdir)` does not have the feature `docking` ``` Took me a while to realize why: 0.8 doesn't have the docking feature (that...
There's 2 warnings output by imgui's freetype.cpp - we can suppress these similar to https://github.com/inkyblackness/imgui-go/blob/v4.4.0/wrapper.go and probably report this upstream (quick search on upstream issue tracker didn't find anything)
I've tried to build with the Freetype feature on Windows in GH Actions and got stuck, as I'm not sure how best to make library available Upstream imgui [only tests...
As foretold in the 0.8 release notes, > Currently `im_str!` is deprecated and will be removed in 0.9.0
Something I wanted for writing test cases for some imgui widgets, but might be useful for a few reasons: 1. An alternative backend as discussed in #444 - not being...
winit might get multiple scroll events per frame like so: ``` [lib.rs:104] delta = LineDelta( 1.0666667, 0.0, ) [lib.rs:104] delta = LineDelta( 0.0, 0.26666668, ) [lib.rs:104] delta = LineDelta( 1.0666667,...
Today I switched some of our code from `columns` to the new table API. It's all pretty much working (except one problem where it doesn't respect `imgui::WindowFlags::NO_INPUTS` or disablement which...
**Describe the bug** There seems to be a one frame delay in how clicks are handled. Easiest to see if the frame-rate is extremely low, but is noticeable even at...
This tool has been extremely useful, thanks! By far the simplest to get working tool for the `instrument-coverage` (I had some trouble getting grcov to work) One thing I think...