summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@gnome.org>2007-10-24 21:35:03 +0000
committerBehdad Esfahbod <behdad@src.gnome.org>2007-10-24 21:35:03 +0000
commit4fcca06c8d9e38b54c725a25cebfd803d17024c2 (patch)
tree96da516868b877d4e355e639b6170a90aac5f964
parent05002ecf14a2badd6442acf13ba6923ec0590587 (diff)
downloadpango-4fcca06c8d9e38b54c725a25cebfd803d17024c2.tar.gz
Add commented-out dummy struct for Extension lookups.
2007-10-24 Behdad Esfahbod <behdad@gnome.org> * pango/opentype/harfbuzz-gpos-private.h: * pango/opentype/harfbuzz-gsub-private.h: Add commented-out dummy struct for Extension lookups. svn path=/trunk/; revision=2474
-rw-r--r--ChangeLog6
-rw-r--r--pango/opentype/harfbuzz-gpos-private.h13
-rw-r--r--pango/opentype/harfbuzz-gsub-private.h13
3 files changed, 32 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 3589dcd6..37ec1f3f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2007-10-24 Behdad Esfahbod <behdad@gnome.org>
+ * pango/opentype/harfbuzz-gpos-private.h:
+ * pango/opentype/harfbuzz-gsub-private.h:
+ Add commented-out dummy struct for Extension lookups.
+
+2007-10-24 Behdad Esfahbod <behdad@gnome.org>
+
Bug 478865 – Drastically reduce number of PangoFont objects created
for rotating text
diff --git a/pango/opentype/harfbuzz-gpos-private.h b/pango/opentype/harfbuzz-gpos-private.h
index ba08ecfe..1bd6ec4f 100644
--- a/pango/opentype/harfbuzz-gpos-private.h
+++ b/pango/opentype/harfbuzz-gpos-private.h
@@ -655,6 +655,19 @@ struct HB_ChainContextPos_
typedef struct HB_ChainContextPos_ HB_ChainContextPos;
+#if 0
+/* LookupType 10 */
+struct HB_ExtensionPos_
+{
+ FT_UShort PosFormat; /* always 1 */
+ FT_UShort LookuptType; /* lookup-type of referenced subtable */
+ HB_GPOS_SubTable *subtable; /* referenced subtable */
+};
+
+typedef struct HB_ExtensionPos_ HB_ExtensionPos;
+#endif
+
+
union HB_GPOS_SubTable_
{
HB_SinglePos single;
diff --git a/pango/opentype/harfbuzz-gsub-private.h b/pango/opentype/harfbuzz-gsub-private.h
index 7f339cdb..45bae945 100644
--- a/pango/opentype/harfbuzz-gsub-private.h
+++ b/pango/opentype/harfbuzz-gsub-private.h
@@ -403,6 +403,19 @@ struct HB_ChainContextSubst_
typedef struct HB_ChainContextSubst_ HB_ChainContextSubst;
+#if 0
+/* LookupType 7 */
+struct HB_ExtensionSubst_
+{
+ FT_UShort SubstFormat; /* always 1 */
+ FT_UShort LookuptType; /* lookup-type of referenced subtable */
+ HB_GSUB_SubTable *subtable; /* referenced subtable */
+};
+
+typedef struct HB_ExtensionSubst_ HB_ExtensionSubst;
+#endif
+
+
/* LookupType 8 */
struct HB_ReverseChainContextSubst_
{