Ruifeng Xie
Ruifeng Xie
## Changes - new feature `opentype-math` - new field `math` in `FaceTables` - new module `tables::math`: - `math::Table` for OpenType `MATH` tables; - `MathConstants`, `MathGlyphInfo`, and `MathVariants` subtables; - and...
Should solve #562 and #566. I used the method I proposed [here](https://github.com/imgui-rs/imgui-rs/issues/566#issuecomment-987711170) (using `vcpkg` in addition to `pkg-config`). It builds and links properly with my local settings, but I'm not...
According to [your own article](https://adventures.michaelfbryan.com/posts/ffi-safe-polymorphism-in-rust/) (I believe), ABI for `dyn Trait` objects is unstable, therefore the following use in this guide might be UB: ```rust #[macro_export] macro_rules! declare_plugin { ($plugin_type:ty,...
I am not entirely sure whether libraries compiled with VS2017 is binary compatible to VS2019, but in case it is not, please consider add VS2019 targets.
It seems this crate only keeps track of `Loaded` assets, and waits indefinitely if some of the assets actually `Failed` loading. (I drew this conclusion based on the following code....
I believe this part is already implemented currently in this repo, but not yet released to `crates.io`. Personally, I feel more comfortable having `crates.io` dependencies than `git` dependencies. I understand...
Thanks for your great library! I use both Rust and Haskell, and have learned about error reporting libraries like `ariadne` and [`codespan-reporting`](https://github.com/brendanzab/codespan) for a while. Previously when working on a...
### What the issue is? The colour of entries in the side bar of the start up screen (where the recent projects are listed) looks weird to me. I suspect...
Flutter has support for developing desktop applications, but in IntelliJ IDEA it is very painful to edit the C++ files for e.g. the Windows runner because its lack of support...