dbr/Ben

Results 190 comments of dbr/Ben

Yep the `freetype.cpp` was unintentionally excluded from the `.crate`, which caused builds to fail when a) using the crate and b) using freetype feature (whereas if you built from git...

This is indeed a bit unobvious, but I think it is working more-or-less correctly, and just in need of ~a better doc string~ a doc string Calling `add_font` takes the...

I can't be of much help here as I've not done much with cross compiling. The cross-rs project has an issue on linkign C++ stuff, https://github.com/cross-rs/cross/issues/31 but I suspect it...

Extremely useful to have that written down, thanks! Maybe worth noting (if only for myself) that `~/src/cimgui/imgui` needs to be checked out to the same commit as `~/src/imgui-rs/imgui-sys/third-party/imgui` or things...

This is documented in `docs/upgrading-imgui.md` (e.g [this one from 0.8 release](https://github.com/imgui-rs/imgui-rs/blob/v0.8.0/docs/upgrading-imgui.md)) https://github.com/imgui-rs/imgui-rs/pull/557 also adds an additional branch to generate things for - this is partially automated (`cargo xtask bindgen` runs...

There's now a script to copy over imgui, along with the existing ones to run cimgui's generator and run bindgen (and the steps are documented) I think this part is...

I've not made any progress on this yet. I would like to wrap up the imgui-rs 0.9 release before updating to the new upstream library (the 0.9 release has quite...

(I think these changes should also solve #492 and #558 )

Just spotted this discussion which prompted the current API, https://github.com/imgui-rs/imgui-rs/issues/481#issuecomment-913234388 - and so I think some of my thoughts above are incorrect, > It's build method doesn't take a closure...

> your best options are either glow, wgpu, or using a software renderer `winit` [supports iOS](https://github.com/rust-windowing/winit/blob/v0.26.1/src/platform/ios.rs) and [Android](https://github.com/rust-windowing/winit/blob/v0.26.1/src/platform/android.rs). For the renderer side of things - wgpu supports iOS and Android,...