projects
/
m17n
/
libotf.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e7c6079
)
(dump_cmap_table): Handle format 14.
author
handa
<handa>
Mon, 22 Dec 2008 05:53:33 +0000
(
05:53
+0000)
committer
handa
<handa>
Mon, 22 Dec 2008 05:53:33 +0000
(
05:53
+0000)
example/otfdump.c
patch
|
blob
|
history
diff --git
a/example/otfdump.c
b/example/otfdump.c
index
3452aae
..
f598d67
100644
(file)
--- a/
example/otfdump.c
+++ b/
example/otfdump.c
@@
-1377,6
+1377,23
@@
dump_cmap_table (int indent, OTF_cmap *cmap)
sub12->Groups[j].startGlyphID);
}
}
+ break;
+
+ case 14:
+ {
+ OTF_EncodingSubtable14 *sub14
+ = cmap->EncodingRecord[i].subtable.f.f14;
+ int j;
+
+ IPRINT ("(raw-data");
+ for (j = 0; j < sub14->nbytes; j++)
+ {
+ if ((j % 16) == 0)
+ IPRINT (" ");
+ printf (" %02X", sub14->data[j]);
+ }
+ printf (")");
+ }
}
indent -= 2;