harfbuzz_rs
harfbuzz_rs copied to clipboard
Add optional freetype integration
Added the function hb_ft_font_create_referenced() for creating fonts from freetype faces.
When building for android target, the compiled harfbuzz is missing freetype support due to the system not having it installed.
Should we make these changes:
- Link freetype-sys as a git submodule
- Add these lines to
build.rs:.include("freetype-sys/freetype2/include/")andcfg.define("HAVE_FREETYPE", "1");.
?
so....