Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Unified Diff: site/user/tips.md

Issue 1523023002: Documentation: text shaping (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 2015-12-14 (Monday) 12:24:31 EST Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698