Hi!
Currently FreeTypeSharp cannot render sbix fonts (like Apple Color Emoji) because FreeType is compiled without libpng support.
When trying to load Apple Color Emoji glyphs:
FT_HAS_SBIX returns true
FT_Load_Glyph returns FT_Err_Unimplemented_Feature
The sbix format stores PNG images inside the font, so FreeType needs libpng to decode them.
Would it be possible to compile the native binaries with libpng enabled?
CMake flag: -DFT_REQUIRE_PNG=ON