freetype-sys icon indicating copy to clipboard operation
freetype-sys copied to clipboard

Low level bindings for the FreeType font library

Results 19 freetype-sys issues
Sort by recently updated
recently updated
newest added

I will try to provide a project to recreate this error but I'm hoping it just might ring a bell. Our current Rust builds for android (using NDK `25.2.9519653` succeed),...

There's a commit creating a 0.18 release: https://github.com/PistonDevelopers/freetype-sys/commit/5afd165251ca4f1b8f0ad8541ffcee12675c5647 But it doesn't look like it made it to crates.io: https://crates.io/crates/freetype-sys/versions Any chance that it could get published? Would there be interest...

![image](https://github.com/PistonDevelopers/freetype-sys/assets/48267811/4ccbe5b2-6b19-47e9-a35d-602c018cfefd) It should be '* mut * mut' instead of '* mut'

The API in this crate doesn't seem to have all the FreeType API functions available. I was personally looking for `FT_Get_Font_Format` but it seems to be missing. Is there any...

I'm trying to cross-compile my crate, which depends on `freetype-sys`, from Linux to macOS. When I run `cargo build --target x86_64-apple-darwin`, the compilation of freetype-sys fails very much like https://github.com/gfx-rs/wgpu/issues/2956....

When using `cargo build` on Amazon Linux 5.2, I run into the following error. One of my dependencies depends on this library. After looking up the issue, it seems that...

Hi, I'm trying to compile the crate for ios, and when running the following command: ``` ❯ cargo build --release --target=aarch64-apple-ios ``` I get: ``` running: "cmake" "/Users/daddye/code/freetype-sys/freetype2" "-DCMAKE_DISABLE_FIND_PACKAGE_BZip2=TRUE" "-DCMAKE_DISABLE_FIND_PACKAGE_HarfBuzz=TRUE"...

Hi, I've been trying to compile the Kiss3D example program but I can't get past linking the freetype library. I did the config file as suggested in readme and I...

The `FT_Get_Sfnt_Table` function is currently in its own `extern` block separate from all the other functions, marked with `#[cfg(any(target_os = "linux", target_os = "macos"))]`. This would be fairly easy to...

Static linking against FreeType is possible, and FreeType supplies a static form, `libfreetype.a`. It should be possible to link against this instead of the dynamic library.

draft
discussion