<div dir="ltr">Sure, I've attached the font file we're using.<div><br></div><div>Unfortunately, I don't think our caching solution is anything that could be easily made HarfBuzz friendly, as it builds upon our existing font caching mechanisms (our use case here is real-time games) and uses a font atlas (plus a series of granular caches) to avoid repeatedly asking FreeType for the same data. It is itself heavily reliant on our engine code, and makes extensive use of our custom user-definable composite fonts (which allow users to create their own localisable font families). Our composite fonts also allow you to specify which hinting method to use for each font face (as this can produce nicer results for certain fonts, such as using light hinting with thin fonts), which is why we need to preserve this FreeType hinting behaviour with HarfBuzz (they're just extra FreeType load flags).</div><div><br></div><div>-Jamie.</div></div><div class="gmail_extra"><br><div class="gmail_quote">On 5 October 2015 at 21:24, Behdad Esfahbod <span dir="ltr"><<a href="mailto:behdad.esfahbod@gmail.com" target="_blank">behdad.esfahbod@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">I'm not sure what's wrong.  Can you send me the font file?<br>
<br>
Also, I'm interested to hear more about your caching and load-flags stuff.  I<br>
like to upstream them to the extent that makes sense.<br>
<br>
behdad<br>
<span class=""><br>
On 15-10-05 03:32 PM, Jamie Dale wrote:<br>
> Hey all,<br>
><br>
> In our application we have two text shaping backends; a simple "kerning only"<br>
> implementation using our existing font rendering code (fast, but can't handle<br>
> complex languages), and a HarfBuzz based implementation for when we need to<br>
> support complex languages (although ideally the HarfBuzz implementation should<br>
> be able to produce mostly equivalent results when compared to our existing<br>
> font rendering when dealing with languages like English).<br>
><br>
> If you've seen my previous email entitled "Using FreeType load flags", then<br>
> you'll know I'm using some custom font functions to try and ensure HarfBuzz<br>
> uses the correct FreeType hinting flags, as well as cache a lot of FreeType<br>
> calls, and use the correct scale.<br>
><br>
> So far this has worked out really well, however I've noticed that the HarfBuzz<br>
> implementation isn't applying kerning when shaping English text (probably<br>
> other languages too).<br>
><br>
> The images below are using the Roboto font, and show the output from each<br>
> implementation.<br>
> The top image is using our "kerning only" implementation, and the bottom image<br>
> is using HarfBuzz. Note that the "T" and "e" characters are further apart in<br>
> the bottom image.<br>
</span>> Inline images 2<br>
<div class="HOEnZb"><div class="h5">> Inline images 1<br>
><br>
> Here's the (slightly cut down) code I'm using to create my HarfBuzz font:<br>
><br>
> hb_font_t* CreateHarfBuzzFont(FT_Face InFace, const uint32 InGlyphFlags, const<br>
> int32 InFontSize, const float InFontScale)<br>
> {<br>
> hb_font_t* HarfBuzzFont = nullptr;<br>
><br>
> // Set the character size to render at (needs to be in 1/64 of a "point")<br>
> FT_Set_Char_Size(InFace, 0, InFontSize * 64, 96, 96);<br>
><br>
> if (InFontScale != 1.0f)<br>
> {<br>
> FT_Matrix ScaleMatrix;<br>
> ScaleMatrix.xy = 0;<br>
> ScaleMatrix.xx = (FT_Fixed)(InFontScale * 65536);<br>
> ScaleMatrix.yy = (FT_Fixed)(InFontScale * 65536);<br>
> ScaleMatrix.yx = 0;<br>
> FT_Set_Transform(InFace, &ScaleMatrix, nullptr);<br>
> }<br>
> else<br>
> {<br>
> FT_Set_Transform(InFace, nullptr, nullptr);<br>
> }<br>
><br>
> {<br>
> // Create a sub-font from the default FreeType implementation so we can<br>
> override some font functions to provide low-level caching<br>
> hb_font_t* HarfBuzzFTFont = hb_ft_font_create(InFace, nullptr);<br>
> HarfBuzzFont = hb_font_create_sub_font(HarfBuzzFTFont);<br>
> hb_font_destroy(HarfBuzzFTFont);<br>
> }<br>
><br>
> hb_font_set_funcs(...); // Sets functions that use the user-data below,<br>
> implementations are mostly default, but with a caching layer, and usage of<br>
> FreeType hinting flags<br>
> hb_font_set_user_data(...); // Ensures we have access to InGlyphFlags and the<br>
> low-level caches<br>
> hb_font_set_scale(HarfBuzzFont, InFontScale, InFontScale);<br>
><br>
> return HarfBuzzFont;<br>
> }<br>
><br>
> Am I just missing something simple? I tried calling hb_font_set_ppem but that<br>
> didn't seem to make any difference.<br>
><br>
> Thanks,<br>
> Jamie.<br>
><br>
><br>
</div></div><div class="HOEnZb"><div class="h5">> _______________________________________________<br>
> HarfBuzz mailing list<br>
> <a href="mailto:HarfBuzz@lists.freedesktop.org">HarfBuzz@lists.freedesktop.org</a><br>
> <a href="http://lists.freedesktop.org/mailman/listinfo/harfbuzz" rel="noreferrer" target="_blank">http://lists.freedesktop.org/mailman/listinfo/harfbuzz</a><br>
><br>
</div></div></blockquote></div><br></div>