diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2009-08-01 22:25:04 -0400 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2009-08-01 22:28:06 -0400 |
commit | 019d335ec7710eea286ed0294cda69aace4ebb96 (patch) | |
tree | 307b24bb3c48cc4b53baf7be4c4c31a76e271362 /pango/pango-ot.h | |
parent | b522838694c10d2f4055ff0a22167c0ace546e04 (diff) | |
download | pango-019d335ec7710eea286ed0294cda69aace4ebb96.tar.gz |
[OT] Match struct with HB's
Diffstat (limited to 'pango/pango-ot.h')
-rw-r--r-- | pango/pango-ot.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/pango/pango-ot.h b/pango/pango-ot.h index 8b9d0a24..6a436fc2 100644 --- a/pango/pango-ot.h +++ b/pango/pango-ot.h @@ -64,12 +64,13 @@ typedef enum /* Note that this must match hb_glyph_info_t */ struct _PangoOTGlyph { - guint glyph; + guint32 glyph; guint properties; guint cluster; gushort component; gushort ligID; - gushort property_cache; /* Internal */ + + guint internal; }; struct _PangoOTFeatureMap |