Felix Schütt

Results 66 issues of Felix Schütt

One of the main features missing is the ability to shape / decode the font once on load - right now the entire crate is riddled with `Rc`, which makes...

enhancement

The `Info` struct is not documented, so I sadly have to ask if I understand it correctly: - `MarkPlacement` (together with `is_mark`) is necessary if the glyph is a diacritic...

In order to layout a text line from the `Vec` it would be nice to be able to calculate the glyph positions. The `Adjust::apply`, `Placement::combine_distance` and `Placement::combine_anchor` functions already do...

I've noticed that the error handling in this crate is highly relying on Strings (or `Cow

The currently published version on crates.io depends on `rsa = 0.3.0`, while the examples in this repository use `rsa = ^0.5.0`. If possible, please publish a new version to help...

This patch makes the crate compatible on `no_std` (embedded) environments. The API stays the same. If possible, please publish a new version after merging.

This is the groundwork for making `gleam` no_std compatible. I need `gleam` to be no_std so I can use the `Rc` in no_std crates without having to depend on the...

Since now the compiler has SIMD instructions on stable Rust, wouldn't it be a good idea to SIMD-optimize the operations internally? I.e.: ```rust fn premultiply(data: &mut [u8]) { if is_sse2_detected!()...

The /examples directory got published on crates.io, which led to me having 2.48 megabytes of NFL plays in my ~/.cargo directory. While it's certainly interesting to know that O.Daniels managed...

Right now the only place where the `backtrace` dependency is used is in the error reporting - it would be very nice to be able to turn this feature off...

help wanted