blob: 3490799ba0cbc371d3d437bf13423dacea2c4854 [file] [log] [blame]
Behdad Esfahbod66bf7ce2009-05-17 08:28:42 -04001/*
2 * Copyright (C) 2007,2008,2009 Red Hat, Inc.
3 *
4 * This is part of HarfBuzz, an OpenType Layout engine library.
5 *
6 * Permission is hereby granted, without written agreement and without
7 * license or royalty fees, to use, copy, modify, and distribute this
8 * software and its documentation for any purpose, provided that the
9 * above copyright notice and the following two paragraphs appear in
10 * all copies of this software.
11 *
12 * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
13 * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
14 * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
15 * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
16 * DAMAGE.
17 *
18 * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
19 * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
20 * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
21 * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
22 * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
23 *
24 * Red Hat Author(s): Behdad Esfahbod
25 */
26
27#ifndef HB_OT_LAYOUT_GSUBGPOS_PRIVATE_H
28#define HB_OT_LAYOUT_GSUBGPOS_PRIVATE_H
29
Behdad Esfahbod88a5f5a2009-05-25 03:39:11 -040030#include "hb-buffer-private.h"
Behdad Esfahbod66bf7ce2009-05-17 08:28:42 -040031#include "hb-ot-layout-gdef-private.h"
Behdad Esfahbod66bf7ce2009-05-17 08:28:42 -040032
Behdad Esfahbod6f20f722009-05-17 20:28:01 -040033
Behdad Esfahbodeb0dfc82009-05-18 18:22:44 -040034#define APPLY_ARG_DEF \
Behdad Esfahbod66bf7ce2009-05-17 08:28:42 -040035 hb_ot_layout_t *layout, \
36 hb_buffer_t *buffer, \
37 unsigned int context_length HB_GNUC_UNUSED, \
38 unsigned int nesting_level_left HB_GNUC_UNUSED, \
Behdad Esfahbodecf17e82009-05-17 09:34:41 -040039 unsigned int lookup_flag, \
40 unsigned int property HB_GNUC_UNUSED /* propety of first glyph */
Behdad Esfahbodeb0dfc82009-05-18 18:22:44 -040041#define APPLY_ARG \
Behdad Esfahbod66bf7ce2009-05-17 08:28:42 -040042 layout, \
43 buffer, \
44 context_length, \
45 nesting_level_left, \
Behdad Esfahbodecf17e82009-05-17 09:34:41 -040046 lookup_flag, \
47 property
Behdad Esfahbod66bf7ce2009-05-17 08:28:42 -040048
49
Behdad Esfahbod66bf7ce2009-05-17 08:28:42 -040050typedef bool (*match_func_t) (hb_codepoint_t glyph_id, const USHORT &value, char *data);
Behdad Esfahbodeb0dfc82009-05-18 18:22:44 -040051typedef bool (*apply_lookup_func_t) (APPLY_ARG_DEF, unsigned int lookup_index);
Behdad Esfahbod66bf7ce2009-05-17 08:28:42 -040052
Behdad Esfahbod60d77cf2009-05-19 23:58:54 -040053struct ContextFuncs
54{
Behdad Esfahbod48f16ed2009-05-17 22:11:30 -040055 match_func_t match;
56 apply_lookup_func_t apply;
Behdad Esfahbod66bf7ce2009-05-17 08:28:42 -040057};
58
Behdad Esfahbodf14c2b72009-05-18 02:36:18 -040059
Behdad Esfahbod60d77cf2009-05-19 23:58:54 -040060static inline bool match_glyph (hb_codepoint_t glyph_id, const USHORT &value, char *data)
61{
Behdad Esfahbod48f16ed2009-05-17 22:11:30 -040062 return glyph_id == value;
63}
Behdad Esfahbod66bf7ce2009-05-17 08:28:42 -040064
Behdad Esfahbod60d77cf2009-05-19 23:58:54 -040065static inline bool match_class (hb_codepoint_t glyph_id, const USHORT &value, char *data)
66{
Behdad Esfahbod4497af02009-05-25 03:20:18 -040067 const ClassDef &class_def = *(const ClassDef *)data;
Behdad Esfahbod48f16ed2009-05-17 22:11:30 -040068 return class_def.get_class (glyph_id) == value;
69}
70
Behdad Esfahbod60d77cf2009-05-19 23:58:54 -040071static inline bool match_coverage (hb_codepoint_t glyph_id, const USHORT &value, char *data)
72{
Behdad Esfahbod6b54c5d2009-05-18 18:30:25 -040073 const OffsetTo<Coverage> &coverage = (const OffsetTo<Coverage>&)value;
Behdad Esfahbod48f16ed2009-05-17 22:11:30 -040074 return (data+coverage) (glyph_id) != NOT_COVERED;
75}
76
Behdad Esfahbod66bf7ce2009-05-17 08:28:42 -040077
Behdad Esfahbodeb0dfc82009-05-18 18:22:44 -040078static inline bool match_input (APPLY_ARG_DEF,
Behdad Esfahbode072c242009-05-18 03:47:31 -040079 unsigned int count, /* Including the first glyph (not matched) */
Behdad Esfahbodf14c2b72009-05-18 02:36:18 -040080 const USHORT input[], /* Array of input values--start with second glyph */
81 match_func_t match_func,
82 char *match_data,
83 unsigned int *context_length_out)
84{
Behdad Esfahbod66bf7ce2009-05-17 08:28:42 -040085 unsigned int i, j;
Behdad Esfahbod7cff75b2009-05-18 04:09:05 -040086 unsigned int end = MIN (buffer->in_length, buffer->in_pos + context_length);
87 if (HB_UNLIKELY (buffer->in_pos + count > end))
88 return false;
Behdad Esfahbod66bf7ce2009-05-17 08:28:42 -040089
Behdad Esfahbod60d77cf2009-05-19 23:58:54 -040090 for (i = 1, j = buffer->in_pos + 1; i < count; i++, j++)
91 {
Behdad Esfahbod4189b922009-05-26 17:31:56 -040092 while (_hb_ot_layout_skip_mark (layout, IN_INFO (j), lookup_flag, NULL))
Behdad Esfahbod60d77cf2009-05-19 23:58:54 -040093 {
Behdad Esfahbod7cff75b2009-05-18 04:09:05 -040094 if (HB_UNLIKELY (j + count - i == end))
Behdad Esfahbod66bf7ce2009-05-17 08:28:42 -040095 return false;
96 j++;
97 }
98
Behdad Esfahbod4189b922009-05-26 17:31:56 -040099 if (HB_LIKELY (!match_func (IN_GLYPH (j), input[i - 1], match_data)))
Behdad Esfahbod66bf7ce2009-05-17 08:28:42 -0400100 return false;
101 }
102
Behdad Esfahbodd0ba0552009-05-18 03:56:39 -0400103 *context_length_out = j - buffer->in_pos;
104
105 return true;
106}
107
Behdad Esfahbodeb0dfc82009-05-18 18:22:44 -0400108static inline bool match_backtrack (APPLY_ARG_DEF,
Behdad Esfahbodd0ba0552009-05-18 03:56:39 -0400109 unsigned int count,
110 const USHORT backtrack[],
111 match_func_t match_func,
112 char *match_data)
113{
Behdad Esfahbod7cff75b2009-05-18 04:09:05 -0400114 if (HB_UNLIKELY (buffer->out_pos < count))
115 return false;
Behdad Esfahbodd0ba0552009-05-18 03:56:39 -0400116
Behdad Esfahbod60d77cf2009-05-19 23:58:54 -0400117 for (unsigned int i = 0, j = buffer->out_pos - 1; i < count; i++, j--)
118 {
Behdad Esfahbod4189b922009-05-26 17:31:56 -0400119 while (_hb_ot_layout_skip_mark (layout, OUT_INFO (j), lookup_flag, NULL))
Behdad Esfahbod60d77cf2009-05-19 23:58:54 -0400120 {
Behdad Esfahbodd0ba0552009-05-18 03:56:39 -0400121 if (HB_UNLIKELY (j + 1 == count - i))
122 return false;
123 j--;
124 }
125
Behdad Esfahbod4189b922009-05-26 17:31:56 -0400126 if (HB_LIKELY (!match_func (OUT_GLYPH (j), backtrack[i], match_data)))
Behdad Esfahbodd0ba0552009-05-18 03:56:39 -0400127 return false;
128 }
129
130 return true;
131}
132
Behdad Esfahbodeb0dfc82009-05-18 18:22:44 -0400133static inline bool match_lookahead (APPLY_ARG_DEF,
Behdad Esfahbodd0ba0552009-05-18 03:56:39 -0400134 unsigned int count,
135 const USHORT lookahead[],
136 match_func_t match_func,
137 char *match_data,
138 unsigned int offset)
139{
140 unsigned int i, j;
Behdad Esfahbod7cff75b2009-05-18 04:09:05 -0400141 unsigned int end = MIN (buffer->in_length, buffer->in_pos + context_length);
142 if (HB_UNLIKELY (buffer->in_pos + offset + count > end))
143 return false;
Behdad Esfahbodd0ba0552009-05-18 03:56:39 -0400144
Behdad Esfahbod60d77cf2009-05-19 23:58:54 -0400145 for (i = 0, j = buffer->in_pos + offset; i < count; i++, j++)
146 {
Behdad Esfahbod4189b922009-05-26 17:31:56 -0400147 while (_hb_ot_layout_skip_mark (layout, OUT_INFO (j), lookup_flag, NULL))
Behdad Esfahbod60d77cf2009-05-19 23:58:54 -0400148 {
Behdad Esfahbod7cff75b2009-05-18 04:09:05 -0400149 if (HB_UNLIKELY (j + count - i == end))
Behdad Esfahbodd0ba0552009-05-18 03:56:39 -0400150 return false;
151 j++;
152 }
153
Behdad Esfahbod4189b922009-05-26 17:31:56 -0400154 if (HB_LIKELY (!match_func (IN_GLYPH (j), lookahead[i], match_data)))
Behdad Esfahbodd0ba0552009-05-18 03:56:39 -0400155 return false;
156 }
Behdad Esfahbodf14c2b72009-05-18 02:36:18 -0400157
158 return true;
159}
160
161
Behdad Esfahbod60d77cf2009-05-19 23:58:54 -0400162struct LookupRecord
163{
Behdad Esfahbodf14c2b72009-05-18 02:36:18 -0400164 USHORT sequenceIndex; /* Index into current glyph
165 * sequence--first glyph = 0 */
166 USHORT lookupListIndex; /* Lookup to apply to that
167 * position--zero--based */
168};
169ASSERT_SIZE (LookupRecord, 4);
170
Behdad Esfahbodeb0dfc82009-05-18 18:22:44 -0400171static inline bool apply_lookup (APPLY_ARG_DEF,
Behdad Esfahbode072c242009-05-18 03:47:31 -0400172 unsigned int count, /* Including the first glyph */
173 unsigned int lookupCount,
Behdad Esfahbodf14c2b72009-05-18 02:36:18 -0400174 const LookupRecord lookupRecord[], /* Array of LookupRecords--in design order */
175 apply_lookup_func_t apply_func)
176{
Behdad Esfahbode73a0c22009-05-18 04:15:25 -0400177 unsigned int end = MIN (buffer->in_length, buffer->in_pos + context_length);
178 if (HB_UNLIKELY (buffer->in_pos + count > end))
179 return false;
Behdad Esfahbod66bf7ce2009-05-17 08:28:42 -0400180
Behdad Esfahbod7cff75b2009-05-18 04:09:05 -0400181 /* TODO We don't support lookupRecord arrays that are not increasing:
182 * Should be easy for in_place ones at least. */
Behdad Esfahbod60d77cf2009-05-19 23:58:54 -0400183 for (unsigned int i = 0; i < count; i++)
184 {
Behdad Esfahbod4189b922009-05-26 17:31:56 -0400185 while (_hb_ot_layout_skip_mark (layout, IN_CURINFO (), lookup_flag, NULL))
Behdad Esfahbod60d77cf2009-05-19 23:58:54 -0400186 {
Behdad Esfahbode73a0c22009-05-18 04:15:25 -0400187 if (HB_UNLIKELY (buffer->in_pos == end))
188 return true;
189 /* No lookup applied for this index */
190 _hb_buffer_next_glyph (buffer);
191 }
192
Behdad Esfahbod47958de2009-05-18 04:17:47 -0400193 if (lookupCount && i == lookupRecord->sequenceIndex)
Behdad Esfahbod66bf7ce2009-05-17 08:28:42 -0400194 {
195 unsigned int old_pos = buffer->in_pos;
196
197 /* Apply a lookup */
Behdad Esfahbodeb0dfc82009-05-18 18:22:44 -0400198 bool done = apply_func (APPLY_ARG, lookupRecord->lookupListIndex);
Behdad Esfahbod66bf7ce2009-05-17 08:28:42 -0400199
Behdad Esfahbod47958de2009-05-18 04:17:47 -0400200 lookupRecord++;
201 lookupCount--;
Behdad Esfahbod66bf7ce2009-05-17 08:28:42 -0400202 i += buffer->in_pos - old_pos;
Behdad Esfahbod2e8fb6c2009-05-18 04:37:37 -0400203 if (HB_UNLIKELY (buffer->in_pos == end))
204 return true;
Behdad Esfahbod66bf7ce2009-05-17 08:28:42 -0400205
206 if (!done)
207 goto not_applied;
208 }
209 else
210 {
211 not_applied:
212 /* No lookup applied for this index */
213 _hb_buffer_next_glyph (buffer);
214 i++;
215 }
216 }
217
218 return true;
219}
Behdad Esfahbod48f16ed2009-05-17 22:11:30 -0400220
Behdad Esfahbodf14c2b72009-05-18 02:36:18 -0400221
222/* Contextual lookups */
223
Behdad Esfahbod60d77cf2009-05-19 23:58:54 -0400224struct ContextLookupContext
225{
Behdad Esfahbodf14c2b72009-05-18 02:36:18 -0400226 ContextFuncs funcs;
227 char *match_data;
228};
229
Behdad Esfahbodeb0dfc82009-05-18 18:22:44 -0400230static inline bool context_lookup (APPLY_ARG_DEF,
Behdad Esfahbode072c242009-05-18 03:47:31 -0400231 unsigned int inputCount, /* Including the first glyph (not matched) */
Behdad Esfahbodf14c2b72009-05-18 02:36:18 -0400232 const USHORT input[], /* Array of input values--start with second glyph */
Behdad Esfahbode072c242009-05-18 03:47:31 -0400233 unsigned int lookupCount,
Behdad Esfahbod02e1e5c2009-05-18 02:47:57 -0400234 const LookupRecord lookupRecord[],
Behdad Esfahbodf14c2b72009-05-18 02:36:18 -0400235 ContextLookupContext &context)
236{
Behdad Esfahbodeb0dfc82009-05-18 18:22:44 -0400237 return match_input (APPLY_ARG,
Behdad Esfahbodf14c2b72009-05-18 02:36:18 -0400238 inputCount, input,
239 context.funcs.match, context.match_data,
240 &context_length) &&
Behdad Esfahbodeb0dfc82009-05-18 18:22:44 -0400241 apply_lookup (APPLY_ARG,
Behdad Esfahbodf14c2b72009-05-18 02:36:18 -0400242 inputCount,
243 lookupCount, lookupRecord,
244 context.funcs.apply);
245}
246
Behdad Esfahbod60d77cf2009-05-19 23:58:54 -0400247struct Rule
248{
Behdad Esfahbod66bf7ce2009-05-17 08:28:42 -0400249 friend struct RuleSet;
250
251 private:
Behdad Esfahbod60d77cf2009-05-19 23:58:54 -0400252 inline bool apply (APPLY_ARG_DEF, ContextLookupContext &context) const
253 {
Behdad Esfahbod13ed4402009-05-18 02:14:37 -0400254 const LookupRecord *lookupRecord = (const LookupRecord *)
255 ((const char *) input +
256 sizeof (input[0]) * (inputCount ? inputCount - 1 : 0));
Behdad Esfahbodeb0dfc82009-05-18 18:22:44 -0400257 return context_lookup (APPLY_ARG,
Behdad Esfahbod969afd72009-05-18 05:47:47 -0400258 inputCount, input,
259 lookupCount, lookupRecord,
Behdad Esfahbod66bf7ce2009-05-17 08:28:42 -0400260 context);
261 }
262
263 private:
Behdad Esfahbod48f16ed2009-05-17 22:11:30 -0400264 USHORT inputCount; /* Total number of glyphs in input
Behdad Esfahbod66bf7ce2009-05-17 08:28:42 -0400265 * glyph sequence--includes the first
266 * glyph */
Behdad Esfahbod48f16ed2009-05-17 22:11:30 -0400267 USHORT lookupCount; /* Number of LookupRecords */
268 USHORT input[]; /* Array of match inputs--start with
Behdad Esfahbod66bf7ce2009-05-17 08:28:42 -0400269 * second glyph */
Behdad Esfahbodaa3d7ad2009-05-17 23:17:56 -0400270 LookupRecord lookupRecordX[]; /* Array of LookupRecords--in
Behdad Esfahbod66bf7ce2009-05-17 08:28:42 -0400271 * design order */
272};
273ASSERT_SIZE (Rule, 4);
274
Behdad Esfahbod60d77cf2009-05-19 23:58:54 -0400275struct RuleSet
276{
277 inline bool apply (APPLY_ARG_DEF, ContextLookupContext &context) const
278 {
Behdad Esfahbod66bf7ce2009-05-17 08:28:42 -0400279 unsigned int num_rules = rule.len;
Behdad Esfahbod60d77cf2009-05-19 23:58:54 -0400280 for (unsigned int i = 0; i < num_rules; i++)
281 {
Behdad Esfahbodeb0dfc82009-05-18 18:22:44 -0400282 if ((this+rule[i]).apply (APPLY_ARG, context))
Behdad Esfahbod66bf7ce2009-05-17 08:28:42 -0400283 return true;
284 }
285
286 return false;
287 }
288
289 private:
290 OffsetArrayOf<Rule>
Behdad Esfahbod48f16ed2009-05-17 22:11:30 -0400291 rule; /* Array of Rule tables
Behdad Esfahbod66bf7ce2009-05-17 08:28:42 -0400292 * ordered by preference */
293};
294
295
Behdad Esfahbod60d77cf2009-05-19 23:58:54 -0400296struct ContextFormat1
297{
Behdad Esfahbod66bf7ce2009-05-17 08:28:42 -0400298 friend struct Context;
299
300 private:
Behdad Esfahbod60d77cf2009-05-19 23:58:54 -0400301 inline bool apply (APPLY_ARG_DEF, apply_lookup_func_t apply_func) const
302 {
Behdad Esfahbod66bf7ce2009-05-17 08:28:42 -0400303 unsigned int index = (this+coverage) (IN_CURGLYPH ());
Behdad Esfahbod4acaffd2009-05-18 05:29:29 -0400304 if (HB_LIKELY (index == NOT_COVERED))
Behdad Esfahbodaa3d7ad2009-05-17 23:17:56 -0400305 return false;
306
Behdad Esfahbod66bf7ce2009-05-17 08:28:42 -0400307 const RuleSet &rule_set = this+ruleSet[index];
308 struct ContextLookupContext context = {
Behdad Esfahbod48f16ed2009-05-17 22:11:30 -0400309 {match_glyph, apply_func},
310 NULL
Behdad Esfahbod66bf7ce2009-05-17 08:28:42 -0400311 };
Behdad Esfahbodeb0dfc82009-05-18 18:22:44 -0400312 return rule_set.apply (APPLY_ARG, context);
Behdad Esfahbod66bf7ce2009-05-17 08:28:42 -0400313 }
314
315 private:
316 USHORT format; /* Format identifier--format = 1 */
317 OffsetTo<Coverage>
318 coverage; /* Offset to Coverage table--from
319 * beginning of table */
320 OffsetArrayOf<RuleSet>
321 ruleSet; /* Array of RuleSet tables
322 * ordered by Coverage Index */
323};
324ASSERT_SIZE (ContextFormat1, 6);
325
326
Behdad Esfahbod60d77cf2009-05-19 23:58:54 -0400327struct ContextFormat2
328{
Behdad Esfahbod66bf7ce2009-05-17 08:28:42 -0400329 friend struct Context;
330
331 private:
Behdad Esfahbod60d77cf2009-05-19 23:58:54 -0400332 inline bool apply (APPLY_ARG_DEF, apply_lookup_func_t apply_func) const
333 {
Behdad Esfahbod66bf7ce2009-05-17 08:28:42 -0400334 unsigned int index = (this+coverage) (IN_CURGLYPH ());
Behdad Esfahbod4acaffd2009-05-18 05:29:29 -0400335 if (HB_LIKELY (index == NOT_COVERED))
Behdad Esfahbodaa3d7ad2009-05-17 23:17:56 -0400336 return false;
337
338 const ClassDef &class_def = this+classDef;
339 index = class_def (IN_CURGLYPH ());
Behdad Esfahbod66bf7ce2009-05-17 08:28:42 -0400340 const RuleSet &rule_set = this+ruleSet[index];
341 /* LONGTERMTODO: Old code fetches glyph classes at most once and caches
342 * them across subrule lookups. Not sure it's worth it.
343 */
344 struct ContextLookupContext context = {
Behdad Esfahbod48f16ed2009-05-17 22:11:30 -0400345 {match_class, apply_func},
Behdad Esfahbodaa3d7ad2009-05-17 23:17:56 -0400346 (char *) &class_def
Behdad Esfahbod66bf7ce2009-05-17 08:28:42 -0400347 };
Behdad Esfahbodeb0dfc82009-05-18 18:22:44 -0400348 return rule_set.apply (APPLY_ARG, context);
Behdad Esfahbod66bf7ce2009-05-17 08:28:42 -0400349 }
350
351 private:
352 USHORT format; /* Format identifier--format = 2 */
353 OffsetTo<Coverage>
354 coverage; /* Offset to Coverage table--from
355 * beginning of table */
356 OffsetTo<ClassDef>
357 classDef; /* Offset to glyph ClassDef table--from
358 * beginning of table */
359 OffsetArrayOf<RuleSet>
360 ruleSet; /* Array of RuleSet tables
361 * ordered by class */
362};
363ASSERT_SIZE (ContextFormat2, 8);
364
365
Behdad Esfahbod60d77cf2009-05-19 23:58:54 -0400366struct ContextFormat3
367{
Behdad Esfahbod66bf7ce2009-05-17 08:28:42 -0400368 friend struct Context;
369
370 private:
Behdad Esfahbod60d77cf2009-05-19 23:58:54 -0400371 inline bool apply (APPLY_ARG_DEF, apply_lookup_func_t apply_func) const
372 {
Behdad Esfahbod02e1e5c2009-05-18 02:47:57 -0400373 unsigned int index = (this+coverage[0]) (IN_CURGLYPH ());
Behdad Esfahbod4acaffd2009-05-18 05:29:29 -0400374 if (HB_LIKELY (index == NOT_COVERED))
Behdad Esfahbod02e1e5c2009-05-18 02:47:57 -0400375 return false;
376
Behdad Esfahbod13ed4402009-05-18 02:14:37 -0400377 const LookupRecord *lookupRecord = (const LookupRecord *)
378 ((const char *) coverage +
379 sizeof (coverage[0]) * glyphCount);
Behdad Esfahbod66bf7ce2009-05-17 08:28:42 -0400380 struct ContextLookupContext context = {
Behdad Esfahbod48f16ed2009-05-17 22:11:30 -0400381 {match_coverage, apply_func},
382 (char *) this
Behdad Esfahbod66bf7ce2009-05-17 08:28:42 -0400383 };
Behdad Esfahbodeb0dfc82009-05-18 18:22:44 -0400384 return context_lookup (APPLY_ARG,
Behdad Esfahbod969afd72009-05-18 05:47:47 -0400385 glyphCount, (const USHORT *) (coverage + 1),
386 lookupCount, lookupRecord,
Behdad Esfahbod66bf7ce2009-05-17 08:28:42 -0400387 context);
388 }
389
Behdad Esfahbod66bf7ce2009-05-17 08:28:42 -0400390 private:
391 USHORT format; /* Format identifier--format = 3 */
392 USHORT glyphCount; /* Number of glyphs in the input glyph
393 * sequence */
Behdad Esfahbod48f16ed2009-05-17 22:11:30 -0400394 USHORT lookupCount; /* Number of LookupRecords */
Behdad Esfahbodaa3d7ad2009-05-17 23:17:56 -0400395 OffsetTo<Coverage>
396 coverage[]; /* Array of offsets to Coverage
397 * table in glyph sequence order */
398 LookupRecord lookupRecordX[]; /* Array of LookupRecords--in
Behdad Esfahbod66bf7ce2009-05-17 08:28:42 -0400399 * design order */
400};
401ASSERT_SIZE (ContextFormat3, 6);
402
Behdad Esfahbod60d77cf2009-05-19 23:58:54 -0400403struct Context
404{
Behdad Esfahbod66bf7ce2009-05-17 08:28:42 -0400405 protected:
Behdad Esfahbod60d77cf2009-05-19 23:58:54 -0400406 bool apply (APPLY_ARG_DEF, apply_lookup_func_t apply_func) const
407 {
Behdad Esfahbod66bf7ce2009-05-17 08:28:42 -0400408 switch (u.format) {
Behdad Esfahbodeb0dfc82009-05-18 18:22:44 -0400409 case 1: return u.format1->apply (APPLY_ARG, apply_func);
410 case 2: return u.format2->apply (APPLY_ARG, apply_func);
411 case 3: return u.format3->apply (APPLY_ARG, apply_func);
Behdad Esfahbod66bf7ce2009-05-17 08:28:42 -0400412 default:return false;
413 }
414 }
415
416 private:
417 union {
Behdad Esfahbodf8dc67b2009-05-17 19:47:54 -0400418 USHORT format; /* Format identifier */
419 ContextFormat1 format1[];
420 ContextFormat2 format2[];
421 ContextFormat3 format3[];
Behdad Esfahbod66bf7ce2009-05-17 08:28:42 -0400422 } u;
423};
Behdad Esfahbodf8dc67b2009-05-17 19:47:54 -0400424ASSERT_SIZE (Context, 2);
Behdad Esfahbod66bf7ce2009-05-17 08:28:42 -0400425
Behdad Esfahbodca5290f2009-05-17 20:48:27 -0400426
427/* Chaining Contextual lookups */
428
Behdad Esfahbod60d77cf2009-05-19 23:58:54 -0400429struct ChainContextLookupContext
430{
Behdad Esfahbod48f16ed2009-05-17 22:11:30 -0400431 ContextFuncs funcs;
432 char *match_data[3];
433};
434
Behdad Esfahbodeb0dfc82009-05-18 18:22:44 -0400435static inline bool chain_context_lookup (APPLY_ARG_DEF,
Behdad Esfahbode072c242009-05-18 03:47:31 -0400436 unsigned int backtrackCount,
Behdad Esfahbod02e1e5c2009-05-18 02:47:57 -0400437 const USHORT backtrack[],
Behdad Esfahbode072c242009-05-18 03:47:31 -0400438 unsigned int inputCount, /* Including the first glyph (not matched) */
Behdad Esfahbod02e1e5c2009-05-18 02:47:57 -0400439 const USHORT input[], /* Array of input values--start with second glyph */
Behdad Esfahbode072c242009-05-18 03:47:31 -0400440 unsigned int lookaheadCount,
Behdad Esfahbod02e1e5c2009-05-18 02:47:57 -0400441 const USHORT lookahead[],
Behdad Esfahbode072c242009-05-18 03:47:31 -0400442 unsigned int lookupCount,
Behdad Esfahbod02e1e5c2009-05-18 02:47:57 -0400443 const LookupRecord lookupRecord[],
444 ChainContextLookupContext &context)
445{
Behdad Esfahbode072c242009-05-18 03:47:31 -0400446 /* First guess */
447 if (HB_UNLIKELY (buffer->out_pos < backtrackCount ||
Behdad Esfahbod122f21f2009-05-18 04:21:53 -0400448 buffer->in_pos + inputCount + lookaheadCount > buffer->in_length ||
449 inputCount + lookaheadCount > context_length))
Behdad Esfahbode072c242009-05-18 03:47:31 -0400450 return false;
451
Behdad Esfahbodd0ba0552009-05-18 03:56:39 -0400452 unsigned int offset;
Behdad Esfahbodeb0dfc82009-05-18 18:22:44 -0400453 return match_backtrack (APPLY_ARG,
Behdad Esfahbode072c242009-05-18 03:47:31 -0400454 backtrackCount, backtrack,
455 context.funcs.match, context.match_data[0]) &&
Behdad Esfahbodeb0dfc82009-05-18 18:22:44 -0400456 match_input (APPLY_ARG,
Behdad Esfahbod02e1e5c2009-05-18 02:47:57 -0400457 inputCount, input,
458 context.funcs.match, context.match_data[1],
Behdad Esfahbodd0ba0552009-05-18 03:56:39 -0400459 &offset) &&
Behdad Esfahbodeb0dfc82009-05-18 18:22:44 -0400460 match_lookahead (APPLY_ARG,
Behdad Esfahbodd0ba0552009-05-18 03:56:39 -0400461 lookaheadCount, lookahead,
462 context.funcs.match, context.match_data[2],
463 offset) &&
464 (context_length = offset, true) &&
Behdad Esfahbodeb0dfc82009-05-18 18:22:44 -0400465 apply_lookup (APPLY_ARG,
Behdad Esfahbod02e1e5c2009-05-18 02:47:57 -0400466 inputCount,
467 lookupCount, lookupRecord,
468 context.funcs.apply);
469}
Behdad Esfahbod48f16ed2009-05-17 22:11:30 -0400470
Behdad Esfahbod60d77cf2009-05-19 23:58:54 -0400471struct ChainRule
472{
Behdad Esfahbodaa3d7ad2009-05-17 23:17:56 -0400473 friend struct ChainRuleSet;
474
475 private:
Behdad Esfahbod60d77cf2009-05-19 23:58:54 -0400476 inline bool apply (APPLY_ARG_DEF, ChainContextLookupContext &context) const
477 {
Behdad Esfahbod515ce4c2009-05-26 13:08:00 -0400478 const HeadlessArrayOf<USHORT> &input = *(const HeadlessArrayOf<USHORT>*)
479 ((const char *) &backtrack + backtrack.get_size ());
480 const ArrayOf<USHORT> &lookahead = *(const ArrayOf<USHORT>*)
481 ((const char *) &input + input.get_size ());
482 const ArrayOf<LookupRecord> &lookup = *(const ArrayOf<LookupRecord>*)
483 ((const char *) &lookahead + lookahead.get_size ());
Behdad Esfahbodeb0dfc82009-05-18 18:22:44 -0400484 return chain_context_lookup (APPLY_ARG,
Behdad Esfahbod969afd72009-05-18 05:47:47 -0400485 backtrack.len, backtrack.array,
486 input.len, input.array + 1,
487 lookahead.len, lookahead.array,
488 lookup.len, lookup.array,
Behdad Esfahbod02e1e5c2009-05-18 02:47:57 -0400489 context);
Behdad Esfahbod13ed4402009-05-18 02:14:37 -0400490 return false;
Behdad Esfahbodaa3d7ad2009-05-17 23:17:56 -0400491 }
492
Behdad Esfahbodca5290f2009-05-17 20:48:27 -0400493
494 private:
Behdad Esfahboddcb6b602009-05-18 01:49:57 -0400495 ArrayOf<USHORT>
496 backtrack; /* Array of backtracking values
Behdad Esfahbodca5290f2009-05-17 20:48:27 -0400497 * (to be matched before the input
498 * sequence) */
Behdad Esfahbode8cbaaf2009-05-18 02:03:58 -0400499 HeadlessArrayOf<USHORT>
500 inputX; /* Array of input values (start with
Behdad Esfahbodca5290f2009-05-17 20:48:27 -0400501 * second glyph) */
Behdad Esfahboddcb6b602009-05-18 01:49:57 -0400502 ArrayOf<USHORT>
503 lookaheadX; /* Array of lookahead values's (to be
Behdad Esfahbod48f16ed2009-05-17 22:11:30 -0400504 * matched after the input sequence) */
Behdad Esfahboddcb6b602009-05-18 01:49:57 -0400505 ArrayOf<LookupRecord>
Behdad Esfahbod02e1e5c2009-05-18 02:47:57 -0400506 lookupX; /* Array of LookupRecords--in
Behdad Esfahbodca5290f2009-05-17 20:48:27 -0400507 * design order) */
508};
Behdad Esfahbod48f16ed2009-05-17 22:11:30 -0400509ASSERT_SIZE (ChainRule, 8);
Behdad Esfahbodca5290f2009-05-17 20:48:27 -0400510
Behdad Esfahbod60d77cf2009-05-19 23:58:54 -0400511struct ChainRuleSet
512{
513 inline bool apply (APPLY_ARG_DEF, ChainContextLookupContext &context) const
514 {
Behdad Esfahbod48f16ed2009-05-17 22:11:30 -0400515 unsigned int num_rules = rule.len;
Behdad Esfahbod60d77cf2009-05-19 23:58:54 -0400516 for (unsigned int i = 0; i < num_rules; i++)
517 {
Behdad Esfahbodeb0dfc82009-05-18 18:22:44 -0400518 if ((this+rule[i]).apply (APPLY_ARG, context))
Behdad Esfahbod48f16ed2009-05-17 22:11:30 -0400519 return true;
520 }
521
522 return false;
523 }
Behdad Esfahbodca5290f2009-05-17 20:48:27 -0400524
525 private:
Behdad Esfahbod48f16ed2009-05-17 22:11:30 -0400526 OffsetArrayOf<ChainRule>
527 rule; /* Array of ChainRule tables
528 * ordered by preference */
Behdad Esfahbodca5290f2009-05-17 20:48:27 -0400529};
Behdad Esfahbod48f16ed2009-05-17 22:11:30 -0400530ASSERT_SIZE (ChainRuleSet, 2);
Behdad Esfahbodca5290f2009-05-17 20:48:27 -0400531
Behdad Esfahbod60d77cf2009-05-19 23:58:54 -0400532struct ChainContextFormat1
533{
Behdad Esfahbodca5290f2009-05-17 20:48:27 -0400534 friend struct ChainContext;
535
536 private:
Behdad Esfahbod60d77cf2009-05-19 23:58:54 -0400537 inline bool apply (APPLY_ARG_DEF, apply_lookup_func_t apply_func) const
538 {
Behdad Esfahbodaa3d7ad2009-05-17 23:17:56 -0400539 unsigned int index = (this+coverage) (IN_CURGLYPH ());
Behdad Esfahbod4acaffd2009-05-18 05:29:29 -0400540 if (HB_LIKELY (index == NOT_COVERED))
Behdad Esfahbodaa3d7ad2009-05-17 23:17:56 -0400541 return false;
542
543 const ChainRuleSet &rule_set = this+ruleSet[index];
544 struct ChainContextLookupContext context = {
545 {match_glyph, apply_func},
546 {NULL, NULL, NULL}
547 };
Behdad Esfahbodeb0dfc82009-05-18 18:22:44 -0400548 return rule_set.apply (APPLY_ARG, context);
Behdad Esfahbodca5290f2009-05-17 20:48:27 -0400549 }
Behdad Esfahbodca5290f2009-05-17 20:48:27 -0400550 private:
551 USHORT format; /* Format identifier--format = 1 */
Behdad Esfahbod48f16ed2009-05-17 22:11:30 -0400552 OffsetTo<Coverage>
553 coverage; /* Offset to Coverage table--from
Behdad Esfahbodca5290f2009-05-17 20:48:27 -0400554 * beginning of table */
Behdad Esfahbodaa3d7ad2009-05-17 23:17:56 -0400555 OffsetArrayOf<ChainRuleSet>
556 ruleSet; /* Array of ChainRuleSet tables
557 * ordered by Coverage Index */
Behdad Esfahbodca5290f2009-05-17 20:48:27 -0400558};
559ASSERT_SIZE (ChainContextFormat1, 6);
560
Behdad Esfahbod60d77cf2009-05-19 23:58:54 -0400561struct ChainContextFormat2
562{
Behdad Esfahbodca5290f2009-05-17 20:48:27 -0400563 friend struct ChainContext;
564
565 private:
Behdad Esfahbod60d77cf2009-05-19 23:58:54 -0400566 inline bool apply (APPLY_ARG_DEF, apply_lookup_func_t apply_func) const
567 {
Behdad Esfahbodaa3d7ad2009-05-17 23:17:56 -0400568 unsigned int index = (this+coverage) (IN_CURGLYPH ());
Behdad Esfahbod4acaffd2009-05-18 05:29:29 -0400569 if (HB_LIKELY (index == NOT_COVERED))
Behdad Esfahbodaa3d7ad2009-05-17 23:17:56 -0400570 return false;
571
572 const ClassDef &backtrack_class_def = this+backtrackClassDef;
573 const ClassDef &input_class_def = this+inputClassDef;
574 const ClassDef &lookahead_class_def = this+lookaheadClassDef;
575
576 index = input_class_def (IN_CURGLYPH ());
577 const ChainRuleSet &rule_set = this+ruleSet[index];
Behdad Esfahbodca5290f2009-05-17 20:48:27 -0400578 /* LONGTERMTODO: Old code fetches glyph classes at most once and caches
579 * them across subrule lookups. Not sure it's worth it.
580 */
Behdad Esfahbodaa3d7ad2009-05-17 23:17:56 -0400581 struct ChainContextLookupContext context = {
582 {match_class, apply_func},
583 {(char *) &backtrack_class_def,
584 (char *) &input_class_def,
585 (char *) &lookahead_class_def}
586 };
Behdad Esfahbodeb0dfc82009-05-18 18:22:44 -0400587 return rule_set.apply (APPLY_ARG, context);
Behdad Esfahbodca5290f2009-05-17 20:48:27 -0400588 }
589
590 private:
591 USHORT format; /* Format identifier--format = 2 */
Behdad Esfahbodaa3d7ad2009-05-17 23:17:56 -0400592 OffsetTo<Coverage>
593 coverage; /* Offset to Coverage table--from
Behdad Esfahbodca5290f2009-05-17 20:48:27 -0400594 * beginning of table */
Behdad Esfahbodaa3d7ad2009-05-17 23:17:56 -0400595 OffsetTo<ClassDef>
596 backtrackClassDef; /* Offset to glyph ClassDef table
Behdad Esfahbodca5290f2009-05-17 20:48:27 -0400597 * containing backtrack sequence
598 * data--from beginning of table */
Behdad Esfahbodaa3d7ad2009-05-17 23:17:56 -0400599 OffsetTo<ClassDef>
600 inputClassDef; /* Offset to glyph ClassDef
Behdad Esfahbodca5290f2009-05-17 20:48:27 -0400601 * table containing input sequence
602 * data--from beginning of table */
Behdad Esfahbodaa3d7ad2009-05-17 23:17:56 -0400603 OffsetTo<ClassDef>
604 lookaheadClassDef; /* Offset to glyph ClassDef table
Behdad Esfahbodca5290f2009-05-17 20:48:27 -0400605 * containing lookahead sequence
606 * data--from beginning of table */
Behdad Esfahbodaa3d7ad2009-05-17 23:17:56 -0400607 OffsetArrayOf<ChainRuleSet>
608 ruleSet; /* Array of ChainRuleSet tables
609 * ordered by class */
Behdad Esfahbodca5290f2009-05-17 20:48:27 -0400610};
611ASSERT_SIZE (ChainContextFormat2, 12);
612
Behdad Esfahbod60d77cf2009-05-19 23:58:54 -0400613struct ChainContextFormat3
614{
Behdad Esfahbodca5290f2009-05-17 20:48:27 -0400615 friend struct ChainContext;
616
617 private:
Behdad Esfahbodaa3d7ad2009-05-17 23:17:56 -0400618
Behdad Esfahbod60d77cf2009-05-19 23:58:54 -0400619 inline bool apply (APPLY_ARG_DEF, apply_lookup_func_t apply_func) const
620 {
Behdad Esfahbod515ce4c2009-05-26 13:08:00 -0400621 const OffsetArrayOf<Coverage> &input = *(const OffsetArrayOf<Coverage>*)
622 ((const char *) &backtrack + backtrack.get_size ());
Behdad Esfahbod02e1e5c2009-05-18 02:47:57 -0400623
624 unsigned int index = (this+input[0]) (IN_CURGLYPH ());
Behdad Esfahbod4acaffd2009-05-18 05:29:29 -0400625 if (HB_LIKELY (index == NOT_COVERED))
Behdad Esfahbodaa3d7ad2009-05-17 23:17:56 -0400626 return false;
Behdad Esfahbodca5290f2009-05-17 20:48:27 -0400627
Behdad Esfahbod515ce4c2009-05-26 13:08:00 -0400628 const OffsetArrayOf<Coverage> &lookahead = *(const OffsetArrayOf<Coverage>*)
629 ((const char *) &input + input.get_size ());
630 const ArrayOf<LookupRecord> &lookup = *(const ArrayOf<LookupRecord>*)
631 ((const char *) &lookahead + lookahead.get_size ());
Behdad Esfahbod02e1e5c2009-05-18 02:47:57 -0400632 struct ChainContextLookupContext context = {
633 {match_coverage, apply_func},
634 {(char *) this, (char *) this, (char *) this}
635 };
Behdad Esfahbodeb0dfc82009-05-18 18:22:44 -0400636 return chain_context_lookup (APPLY_ARG,
Behdad Esfahbod969afd72009-05-18 05:47:47 -0400637 backtrack.len, (USHORT *) backtrack.array,
638 input.len, (USHORT *) input.array,
639 lookahead.len, (USHORT *) lookahead.array,
640 lookup.len, lookup.array,
Behdad Esfahbod02e1e5c2009-05-18 02:47:57 -0400641 context);
642 return false;
Behdad Esfahbodca5290f2009-05-17 20:48:27 -0400643 }
644
645 private:
646 USHORT format; /* Format identifier--format = 3 */
Behdad Esfahboddcb6b602009-05-18 01:49:57 -0400647 OffsetArrayOf<Coverage>
Behdad Esfahbod13ed4402009-05-18 02:14:37 -0400648 backtrack; /* Array of coverage tables
Behdad Esfahbodca5290f2009-05-17 20:48:27 -0400649 * in backtracking sequence, in glyph
650 * sequence order */
Behdad Esfahboddcb6b602009-05-18 01:49:57 -0400651 OffsetArrayOf<Coverage>
Behdad Esfahbod13ed4402009-05-18 02:14:37 -0400652 inputX ; /* Array of coverage
Behdad Esfahbodca5290f2009-05-17 20:48:27 -0400653 * tables in input sequence, in glyph
654 * sequence order */
Behdad Esfahboddcb6b602009-05-18 01:49:57 -0400655 OffsetArrayOf<Coverage>
Behdad Esfahbod13ed4402009-05-18 02:14:37 -0400656 lookaheadX; /* Array of coverage tables
Behdad Esfahbodca5290f2009-05-17 20:48:27 -0400657 * in lookahead sequence, in glyph
658 * sequence order */
Behdad Esfahboddcb6b602009-05-18 01:49:57 -0400659 ArrayOf<LookupRecord>
Behdad Esfahbod02e1e5c2009-05-18 02:47:57 -0400660 lookupX; /* Array of LookupRecords--in
Behdad Esfahboddcb6b602009-05-18 01:49:57 -0400661 * design order) */
Behdad Esfahbodca5290f2009-05-17 20:48:27 -0400662};
663ASSERT_SIZE (ChainContextFormat3, 10);
664
Behdad Esfahbod60d77cf2009-05-19 23:58:54 -0400665struct ChainContext
666{
Behdad Esfahbodca5290f2009-05-17 20:48:27 -0400667 protected:
Behdad Esfahbod60d77cf2009-05-19 23:58:54 -0400668 bool apply (APPLY_ARG_DEF, apply_lookup_func_t apply_func) const
669 {
Behdad Esfahbodca5290f2009-05-17 20:48:27 -0400670 switch (u.format) {
Behdad Esfahbodeb0dfc82009-05-18 18:22:44 -0400671 case 1: return u.format1->apply (APPLY_ARG, apply_func);
672 case 2: return u.format2->apply (APPLY_ARG, apply_func);
673 case 3: return u.format3->apply (APPLY_ARG, apply_func);
Behdad Esfahbodca5290f2009-05-17 20:48:27 -0400674 default:return false;
675 }
676 }
677
678 private:
679 union {
680 USHORT format; /* Format identifier */
681 ChainContextFormat1 format1[];
682 ChainContextFormat2 format2[];
683 ChainContextFormat3 format3[];
684 } u;
685};
686ASSERT_SIZE (ChainContext, 2);
687
688
Behdad Esfahbodd468f9a2009-05-21 22:31:33 -0400689struct ExtensionFormat1
690{
691 friend struct Extension;
692
693 private:
694 inline unsigned int get_type (void) const { return extensionLookupType; }
695 inline unsigned int get_offset (void) const { return (extensionOffset[0] << 16) + extensionOffset[1]; }
696 inline const LookupSubTable& get_subtable (void) const
697 {
698 unsigned int offset = get_offset ();
699 if (HB_UNLIKELY (!offset)) return Null(LookupSubTable);
Behdad Esfahbod4497af02009-05-25 03:20:18 -0400700 return *(LookupSubTable*)(((char *) this) + offset);
Behdad Esfahbodd468f9a2009-05-21 22:31:33 -0400701 }
702
703 private:
704 USHORT format; /* Format identifier. Set to 1. */
705 USHORT extensionLookupType; /* Lookup type of subtable referenced
706 * by ExtensionOffset (i.e. the
707 * extension subtable). */
708 USHORT extensionOffset[2]; /* Offset to the extension subtable,
709 * of lookup type subtable.
710 * Defined as two shorts to avoid
711 * alignment requirements. */
712};
713ASSERT_SIZE (ExtensionFormat1, 8);
714
715struct Extension
716{
717 inline unsigned int get_type (void) const
718 {
719 switch (u.format) {
720 case 1: return u.format1->get_type ();
721 default:return 0;
722 }
723 }
724 inline const LookupSubTable& get_subtable (void) const
725 {
726 switch (u.format) {
727 case 1: return u.format1->get_subtable ();
728 default:return Null(LookupSubTable);
729 }
730 }
731
732 private:
733 union {
734 USHORT format; /* Format identifier */
735 ExtensionFormat1 format1[];
736 } u;
737};
738ASSERT_SIZE (Extension, 2);
739
740
Behdad Esfahbodf45107f2009-05-17 20:13:02 -0400741/*
742 * GSUB/GPOS Common
743 */
744
Behdad Esfahbod60d77cf2009-05-19 23:58:54 -0400745struct GSUBGPOS
746{
Behdad Esfahbodf45107f2009-05-17 20:13:02 -0400747 static const hb_tag_t GSUBTag = HB_TAG ('G','S','U','B');
748 static const hb_tag_t GPOSTag = HB_TAG ('G','P','O','S');
749
Behdad Esfahbod212aba62009-05-24 00:50:27 -0400750 STATIC_DEFINE_GET_FOR_DATA_CHECK_MAJOR_VERSION (GSUBGPOS, 1);
Behdad Esfahbodf45107f2009-05-17 20:13:02 -0400751
752 DEFINE_TAG_LIST_INTERFACE (Script, script ); /* get_script_count (), get_script (i), get_script_tag (i) */
753 DEFINE_TAG_LIST_INTERFACE (Feature, feature); /* get_feature_count(), get_feature(i), get_feature_tag(i) */
754 DEFINE_LIST_INTERFACE (Lookup, lookup ); /* get_lookup_count (), get_lookup (i) */
755
756 // LONGTERMTODO bsearch
757 DEFINE_TAG_FIND_INTERFACE (Script, script ); /* find_script_index (), get_script_by_tag (tag) */
758 DEFINE_TAG_FIND_INTERFACE (Feature, feature); /* find_feature_index(), get_feature_by_tag(tag) */
759
Behdad Esfahbod212aba62009-05-24 00:50:27 -0400760 protected:
Behdad Esfahbod87fcdcb2009-05-24 01:03:24 -0400761 FixedVersion version; /* Version of the GSUB/GPOS table--initially set
Behdad Esfahbodf45107f2009-05-17 20:13:02 -0400762 * to 0x00010000 */
763 OffsetTo<ScriptList>
764 scriptList; /* ScriptList table */
765 OffsetTo<FeatureList>
766 featureList; /* FeatureList table */
767 OffsetTo<LookupList>
768 lookupList; /* LookupList table */
769};
770ASSERT_SIZE (GSUBGPOS, 10);
Behdad Esfahbod66bf7ce2009-05-17 08:28:42 -0400771
Behdad Esfahbod6f20f722009-05-17 20:28:01 -0400772
Behdad Esfahbod66bf7ce2009-05-17 08:28:42 -0400773#endif /* HB_OT_LAYOUT_GSUBGPOS_PRIVATE_H */