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

Unified Diff: src/ots.cc

Issue 524018: Add support for 'kern' OpenType table.... (Closed) Base URL: http://ots.googlecode.com/svn/trunk/
Patch Set: Created 10 years, 12 months 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 | « src/ots.h ('k') | test/SConstruct » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ots.cc
===================================================================
--- src/ots.cc (revision 25)
+++ src/ots.cc (working copy)
@@ -119,7 +119,9 @@
ots::ots_ltsh_should_serialise, ots::ots_ltsh_free, false },
{ Tag("VORG"), ots::ots_vorg_parse, ots::ots_vorg_serialise,
ots::ots_vorg_should_serialise, ots::ots_vorg_free, false },
- // TODO(yusukes): Support GDEF, GPOS, GSUB, kern, mort, base, and jstf tables.
+ { Tag("kern"), ots::ots_kern_parse, ots::ots_kern_serialise,
+ ots::ots_kern_should_serialise, ots::ots_kern_free, false },
+ // TODO(yusukes): Support GDEF, GPOS, GSUB, mort, base, and jstf tables.
{ 0, NULL, NULL, NULL, NULL, false },
};
« no previous file with comments | « src/ots.h ('k') | test/SConstruct » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698