Chromium Code Reviews| Index: site/user/tips.md |
| diff --git a/site/user/tips.md b/site/user/tips.md |
| index 967146f5042b72d31e3f191167a69122448c02eb..1b9663c05806cd95be0900ac3e4acfe7fe0bb240 100644 |
| --- a/site/user/tips.md |
| +++ b/site/user/tips.md |
| @@ -135,10 +135,22 @@ Does Skia support Font hinting? |
| ------------------------------- |
| Skia has a built-in font cache, but it does not know how to actual render font |
| -files like TrueType? into its cache. For that it relies on the platform to |
| -supply an instance of SkScalerContext?. This is Skia's abstract interface for |
| +files like TrueType into its cache. For that it relies on the platform to |
| +supply an instance of SkScalerContext. This is Skia's abstract interface for |
| communicating with a font scaler engine. In src/ports you can see support |
| -files for FreeType?, Mac OS X, and Windows GDI font engines. Other font |
| +files for FreeType, Mac OS X, and Windows GDI font engines. Other font |
| engines can easily be supported in a like manner. |
| +* * * |
| + |
| +<span id="kerning"></span> |
| + |
| +Does Skia shape text (kerning)? |
| +------------------------------- |
| + |
| +No. Skia provides interfaces to draw glyphs, but does not implement a |
| +text shaper. Skia's client's often use Harfbuzz to generate the glyphs |
|
caryclark
2015/12/14 17:51:23
How about a link to harfbuzz.org (or http://www.fr
|
| +and their positions, including kerning. |
| + |
| +<div style="margin-bottom:99%"></div> |