[Indic] Handle initial Ra+Halant in scripts that support Reph
[apps/core/preloaded/video-player.git] / src / hb-ot-shape-complex-indic.cc
1 /*
2  * Copyright © 2011  Google, Inc.
3  *
4  *  This is part of HarfBuzz, a text shaping 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  * Google Author(s): Behdad Esfahbod
25  */
26
27 #include "hb-ot-shape-complex-private.hh"
28
29 HB_BEGIN_DECLS
30
31
32 /* buffer var allocations */
33 #define indic_category() complex_var_persistent_u8_0() /* indic_category_t */
34 #define indic_position() complex_var_persistent_u8_1() /* indic_matra_category_t */
35
36 #define INDIC_TABLE_ELEMENT_TYPE uint8_t
37
38 /* Cateories used in the OpenType spec:
39  * https://www.microsoft.com/typography/otfntdev/devanot/shaping.aspx
40  */
41 /* Note: This enum is duplicated in the -machine.rl source file.
42  * Not sure how to avoid duplication. */
43 enum indic_category_t {
44   OT_X = 0,
45   OT_C,
46   OT_Ra, /* Not explicitly listed in the OT spec, but used in the grammar. */
47   OT_V,
48   OT_N,
49   OT_H,
50   OT_ZWNJ,
51   OT_ZWJ,
52   OT_M,
53   OT_SM,
54   OT_VD,
55   OT_A,
56   OT_NBSP
57 };
58
59 /* Visual positions in a syllable from left to right. */
60 enum indic_position_t {
61   POS_PRE,
62   POS_BASE,
63   POS_ABOVE,
64   POS_BELOW,
65   POS_POST,
66 };
67
68 /* Categories used in IndicSyllabicCategory.txt from UCD */
69 /* The assignments are guesswork */
70 enum indic_syllabic_category_t {
71   INDIC_SYLLABIC_CATEGORY_OTHER                 = OT_X,
72
73   INDIC_SYLLABIC_CATEGORY_AVAGRAHA              = OT_X,
74   INDIC_SYLLABIC_CATEGORY_BINDU                 = OT_SM,
75   INDIC_SYLLABIC_CATEGORY_CONSONANT             = OT_C,
76   INDIC_SYLLABIC_CATEGORY_CONSONANT_DEAD        = OT_C,
77   INDIC_SYLLABIC_CATEGORY_CONSONANT_FINAL       = OT_C,
78   INDIC_SYLLABIC_CATEGORY_CONSONANT_HEAD_LETTER = OT_C,
79   INDIC_SYLLABIC_CATEGORY_CONSONANT_MEDIAL      = OT_C,
80   INDIC_SYLLABIC_CATEGORY_CONSONANT_PLACEHOLDER = OT_NBSP,
81   INDIC_SYLLABIC_CATEGORY_CONSONANT_SUBJOINED   = OT_C,
82   INDIC_SYLLABIC_CATEGORY_CONSONANT_REPHA       = OT_C,
83   INDIC_SYLLABIC_CATEGORY_MODIFYING_LETTER      = OT_X,
84   INDIC_SYLLABIC_CATEGORY_NUKTA                 = OT_N,
85   INDIC_SYLLABIC_CATEGORY_REGISTER_SHIFTER      = OT_X,
86   INDIC_SYLLABIC_CATEGORY_TONE_LETTER           = OT_X,
87   INDIC_SYLLABIC_CATEGORY_TONE_MARK             = OT_X,
88   INDIC_SYLLABIC_CATEGORY_VIRAMA                = OT_H,
89   INDIC_SYLLABIC_CATEGORY_VISARGA               = OT_SM,
90   INDIC_SYLLABIC_CATEGORY_VOWEL                 = OT_V,
91   INDIC_SYLLABIC_CATEGORY_VOWEL_DEPENDENT       = OT_M,
92   INDIC_SYLLABIC_CATEGORY_VOWEL_INDEPENDENT     = OT_V
93 };
94
95 /* Categories used in IndicSMatraCategory.txt from UCD */
96 enum indic_matra_category_t {
97   INDIC_MATRA_CATEGORY_NOT_APPLICABLE           = POS_BASE,
98
99   INDIC_MATRA_CATEGORY_LEFT                     = POS_PRE,
100   INDIC_MATRA_CATEGORY_TOP                      = POS_ABOVE,
101   INDIC_MATRA_CATEGORY_BOTTOM                   = POS_BELOW,
102   INDIC_MATRA_CATEGORY_RIGHT                    = POS_POST,
103
104   /* We don't really care much about these since we decompose them
105    * in the generic pre-shaping layer.  They will only be used if
106    * the font does not cover the decomposition.  In which case, we
107    * define these as aliases to the place we want the split-matra
108    * glyph to show up.  Quite arbitrary. */
109   INDIC_MATRA_CATEGORY_BOTTOM_AND_RIGHT         = INDIC_MATRA_CATEGORY_BOTTOM,
110   INDIC_MATRA_CATEGORY_LEFT_AND_RIGHT           = INDIC_MATRA_CATEGORY_LEFT,
111   INDIC_MATRA_CATEGORY_TOP_AND_BOTTOM           = INDIC_MATRA_CATEGORY_BOTTOM,
112   INDIC_MATRA_CATEGORY_TOP_AND_BOTTOM_AND_RIGHT = INDIC_MATRA_CATEGORY_BOTTOM,
113   INDIC_MATRA_CATEGORY_TOP_AND_LEFT             = INDIC_MATRA_CATEGORY_LEFT,
114   INDIC_MATRA_CATEGORY_TOP_AND_LEFT_AND_RIGHT   = INDIC_MATRA_CATEGORY_LEFT,
115   INDIC_MATRA_CATEGORY_TOP_AND_RIGHT            = INDIC_MATRA_CATEGORY_RIGHT,
116
117   INDIC_MATRA_CATEGORY_INVISIBLE                = INDIC_MATRA_CATEGORY_NOT_APPLICABLE,
118   INDIC_MATRA_CATEGORY_OVERSTRUCK               = INDIC_MATRA_CATEGORY_NOT_APPLICABLE,
119   INDIC_MATRA_CATEGORY_VISUAL_ORDER_LEFT        = INDIC_MATRA_CATEGORY_NOT_APPLICABLE
120 };
121
122 /* Note: We use ASSERT_STATIC_EXPR_ZERO() instead of ASSERT_STATIC_EXPR() and the comma operation
123  * because gcc fails to optimize the latter and fills the table in at runtime. */
124 #define INDIC_COMBINE_CATEGORIES(S,M) \
125   (ASSERT_STATIC_EXPR_ZERO (M == INDIC_MATRA_CATEGORY_NOT_APPLICABLE || (S == INDIC_SYLLABIC_CATEGORY_VIRAMA || S == INDIC_SYLLABIC_CATEGORY_VOWEL_DEPENDENT)) + \
126    ASSERT_STATIC_EXPR_ZERO (S < 16 && M < 16) + \
127    ((M << 4) | S))
128
129 #include "hb-ot-shape-complex-indic-table.hh"
130
131 /* XXX
132  * This is a hack for now.  We should:
133  * 1. Move this data into the main Indic table,
134  * and/or
135  * 2. Probe font lookups to determine consonant positions.
136  */
137 static const struct consonant_position_t {
138   hb_codepoint_t u;
139   indic_position_t position;
140 } consonant_positions[] = {
141   {0x0930, POS_BELOW},
142   {0x09AC, POS_BELOW},
143   {0x09AF, POS_POST},
144   {0x09B0, POS_BELOW},
145   {0x09F0, POS_BELOW},
146   {0x0A2F, POS_POST},
147   {0x0A30, POS_BELOW},
148   {0x0A35, POS_BELOW},
149   {0x0A39, POS_BELOW},
150   {0x0AB0, POS_BELOW},
151   {0x0B24, POS_BELOW},
152   {0x0B28, POS_BELOW},
153   {0x0B2C, POS_BELOW},
154   {0x0B2D, POS_BELOW},
155   {0x0B2E, POS_BELOW},
156   {0x0B2F, POS_POST},
157   {0x0B30, POS_BELOW},
158   {0x0B32, POS_BELOW},
159   {0x0B33, POS_BELOW},
160   {0x0B5F, POS_POST},
161   {0x0B71, POS_BELOW},
162   {0x0C15, POS_BELOW},
163   {0x0C16, POS_BELOW},
164   {0x0C17, POS_BELOW},
165   {0x0C18, POS_BELOW},
166   {0x0C19, POS_BELOW},
167   {0x0C1A, POS_BELOW},
168   {0x0C1B, POS_BELOW},
169   {0x0C1C, POS_BELOW},
170   {0x0C1D, POS_BELOW},
171   {0x0C1E, POS_BELOW},
172   {0x0C1F, POS_BELOW},
173   {0x0C20, POS_BELOW},
174   {0x0C21, POS_BELOW},
175   {0x0C22, POS_BELOW},
176   {0x0C23, POS_BELOW},
177   {0x0C24, POS_BELOW},
178   {0x0C25, POS_BELOW},
179   {0x0C26, POS_BELOW},
180   {0x0C27, POS_BELOW},
181   {0x0C28, POS_BELOW},
182   {0x0C2A, POS_BELOW},
183   {0x0C2B, POS_BELOW},
184   {0x0C2C, POS_BELOW},
185   {0x0C2D, POS_BELOW},
186   {0x0C2E, POS_BELOW},
187   {0x0C2F, POS_BELOW},
188   {0x0C30, POS_BELOW},
189   {0x0C32, POS_BELOW},
190   {0x0C33, POS_BELOW},
191   {0x0C35, POS_BELOW},
192   {0x0C36, POS_BELOW},
193   {0x0C37, POS_BELOW},
194   {0x0C38, POS_BELOW},
195   {0x0C39, POS_BELOW},
196   {0x0C95, POS_BELOW},
197   {0x0C96, POS_BELOW},
198   {0x0C97, POS_BELOW},
199   {0x0C98, POS_BELOW},
200   {0x0C99, POS_BELOW},
201   {0x0C9A, POS_BELOW},
202   {0x0C9B, POS_BELOW},
203   {0x0C9C, POS_BELOW},
204   {0x0C9D, POS_BELOW},
205   {0x0C9E, POS_BELOW},
206   {0x0C9F, POS_BELOW},
207   {0x0CA0, POS_BELOW},
208   {0x0CA1, POS_BELOW},
209   {0x0CA2, POS_BELOW},
210   {0x0CA3, POS_BELOW},
211   {0x0CA4, POS_BELOW},
212   {0x0CA5, POS_BELOW},
213   {0x0CA6, POS_BELOW},
214   {0x0CA7, POS_BELOW},
215   {0x0CA8, POS_BELOW},
216   {0x0CAA, POS_BELOW},
217   {0x0CAB, POS_BELOW},
218   {0x0CAC, POS_BELOW},
219   {0x0CAD, POS_BELOW},
220   {0x0CAE, POS_BELOW},
221   {0x0CAF, POS_BELOW},
222   {0x0CB0, POS_BELOW},
223   {0x0CB2, POS_BELOW},
224   {0x0CB3, POS_BELOW},
225   {0x0CB5, POS_BELOW},
226   {0x0CB6, POS_BELOW},
227   {0x0CB7, POS_BELOW},
228   {0x0CB8, POS_BELOW},
229   {0x0CB9, POS_BELOW},
230   {0x0CDE, POS_BELOW},
231   {0x0D2F, POS_POST},
232   {0x0D30, POS_POST},
233   {0x0D32, POS_BELOW},
234   {0x0D35, POS_POST},
235 };
236
237 /* XXX
238  * This is a hack for now.  We should move this data into the main Indic table.
239  */
240 static const hb_codepoint_t ra_chars[] = {
241   0x0930, /* Devanagari */
242   0x09B0, /* Bengali */
243   0x09F0, /* Bengali */
244   0x09F1, /* Bengali */
245 //0x0A30, /* Gurmukhi */
246   0x0AB0, /* Gujarati */
247   0x0B30, /* Oriya */
248 //0x0BB0, /* Tamil */
249 //0x0C30, /* Telugu */
250   0x0CB0, /* Kannada */
251 //0x0D30, /* Malayalam */
252 };
253
254 static int
255 compare_codepoint (const void *pa, const void *pb)
256 {
257   hb_codepoint_t a = * (hb_codepoint_t *) pa;
258   hb_codepoint_t b = * (hb_codepoint_t *) pb;
259
260   return a < b ? -1 : a == b ? 0 : +1;
261 }
262
263 static indic_position_t
264 consonant_position (hb_codepoint_t u)
265 {
266   consonant_position_t *record;
267
268   record = (consonant_position_t *) bsearch (&u, consonant_positions,
269                                              ARRAY_LENGTH (consonant_positions),
270                                              sizeof (consonant_positions[0]),
271                                              compare_codepoint);
272
273   return record ? record->position : POS_BASE;
274 }
275
276 static bool
277 is_ra (hb_codepoint_t u)
278 {
279   return !!bsearch (&u, ra_chars,
280                     ARRAY_LENGTH (ra_chars),
281                     sizeof (ra_chars[0]),
282                     compare_codepoint);
283 }
284
285
286 static const struct {
287   hb_tag_t tag;
288   hb_bool_t is_global;
289 } indic_basic_features[] =
290 {
291   {HB_TAG('n','u','k','t'), true},
292   {HB_TAG('a','k','h','n'), false},
293   {HB_TAG('r','p','h','f'), false},
294   {HB_TAG('r','k','r','f'), false},
295   {HB_TAG('p','r','e','f'), false},
296   {HB_TAG('b','l','w','f'), false},
297   {HB_TAG('h','a','l','f'), false},
298   {HB_TAG('v','a','t','u'), true},
299   {HB_TAG('p','s','t','f'), false},
300   {HB_TAG('c','j','c','t'), true},
301 };
302
303 /* Same order as the indic_basic_features array */
304 enum {
305   _NUKT,
306   AKHN,
307   RPHF,
308   RKRF,
309   PREF,
310   BLWF,
311   HALF,
312   _VATU,
313   PSTF,
314   _CJCT,
315 };
316
317 static const hb_tag_t indic_other_features[] =
318 {
319   HB_TAG('p','r','e','s'),
320   HB_TAG('a','b','v','s'),
321   HB_TAG('b','l','w','s'),
322   HB_TAG('p','s','t','s'),
323   HB_TAG('h','a','l','n'),
324
325   HB_TAG('d','i','s','t'),
326   HB_TAG('a','b','v','m'),
327   HB_TAG('b','l','w','m'),
328 };
329
330
331 static void
332 initial_reordering (const hb_ot_map_t *map,
333                     hb_face_t *face,
334                     hb_buffer_t *buffer,
335                     void *user_data HB_UNUSED);
336 static void
337 final_reordering (const hb_ot_map_t *map,
338                   hb_face_t *face,
339                   hb_buffer_t *buffer,
340                   void *user_data HB_UNUSED);
341
342 void
343 _hb_ot_shape_complex_collect_features_indic (hb_ot_map_builder_t *map, const hb_segment_properties_t  *props)
344 {
345   map->add_bool_feature (HB_TAG('l','o','c','l'));
346   /* The Indic specs do not require ccmp, but we apply it here since if
347    * there is a use of it, it's typically at the beginning. */
348   map->add_bool_feature (HB_TAG('c','c','m','p'));
349
350   map->add_gsub_pause (initial_reordering, NULL);
351
352   for (unsigned int i = 0; i < ARRAY_LENGTH (indic_basic_features); i++)
353     map->add_bool_feature (indic_basic_features[i].tag, indic_basic_features[i].is_global);
354
355   map->add_gsub_pause (final_reordering, NULL);
356
357   for (unsigned int i = 0; i < ARRAY_LENGTH (indic_other_features); i++)
358     map->add_bool_feature (indic_other_features[i], true);
359 }
360
361
362 bool
363 _hb_ot_shape_complex_prefer_decomposed_indic (void)
364 {
365   /* We want split matras decomposed by the common shaping logic. */
366   return TRUE;
367 }
368
369
370 void
371 _hb_ot_shape_complex_setup_masks_indic (hb_ot_map_t *map, hb_buffer_t *buffer)
372 {
373   HB_BUFFER_ALLOCATE_VAR (buffer, indic_category);
374   HB_BUFFER_ALLOCATE_VAR (buffer, indic_position);
375
376   /* We cannot setup masks here.  We save information about characters
377    * and setup masks later on in a pause-callback. */
378
379   unsigned int count = buffer->len;
380   for (unsigned int i = 0; i < count; i++)
381   {
382     unsigned int type = get_indic_categories (buffer->info[i].codepoint);
383
384     buffer->info[i].indic_category() = type & 0x0F;
385     buffer->info[i].indic_position() = type >> 4;
386
387     if (buffer->info[i].indic_category() == OT_C) {
388       buffer->info[i].indic_position() = consonant_position (buffer->info[i].codepoint);
389       if (is_ra (buffer->info[i].codepoint))
390         buffer->info[i].indic_category() = OT_Ra;
391     }
392   }
393 }
394
395 static int
396 compare_indic_order (const hb_glyph_info_t *pa, const hb_glyph_info_t *pb)
397 {
398   int a = pa->indic_position();
399   int b = pb->indic_position();
400
401   return a < b ? -1 : a == b ? 0 : +1;
402 }
403
404 static void
405 found_consonant_syllable (const hb_ot_map_t *map, hb_buffer_t *buffer, hb_mask_t *mask_array,
406                           unsigned int start, unsigned int end)
407 {
408   unsigned int i;
409   hb_glyph_info_t *info = buffer->info;
410
411   /* Comments from:
412    * https://www.microsoft.com/typography/otfntdev/devanot/shaping.aspx */
413
414   /* 1. Find base consonant:
415    *
416    * The shaping engine finds the base consonant of the syllable, using the
417    * following algorithm: starting from the end of the syllable, move backwards
418    * until a consonant is found that does not have a below-base or post-base
419    * form (post-base forms have to follow below-base forms), or that is not a
420    * pre-base reordering Ra, or arrive at the first consonant. The consonant
421    * stopped at will be the base.
422    *
423    *   o If the syllable starts with Ra + Halant (in a script that has Reph)
424    *     and has more than one consonant, Ra is excluded from candidates for
425    *     base consonants.
426    */
427
428   unsigned int base = 0;
429
430   /* -> starting from the end of the syllable, move backwards */
431   i = end;
432   do {
433     i--;
434     /* -> until a consonant is found */
435     if (info[i].indic_category() == OT_C)
436     {
437       /* -> that does not have a below-base or post-base form
438        * (post-base forms have to follow below-base forms), */
439       if (info[i].indic_position() != POS_BELOW &&
440           info[i].indic_position() != POS_POST)
441       {
442         base = i;
443         break;
444       }
445
446       /* TODO: or that is not a pre-base reordering Ra, */
447
448       /* -> or arrive at the first consonant. The consonant stopped at will be the base. */
449       base = i;
450     }
451   } while (i > start);
452   if (base < start)
453     base = start; /* Just in case... */
454
455   /* TODO
456    * If the syllable starts with Ra + Halant (in a script that has Reph)
457    * and has more than one consonant, Ra is excluded from candidates for
458    * base consonants. */
459
460
461   /* 2. Decompose and reorder Matras:
462    *
463    * Each matra and any syllable modifier sign in the cluster are moved to the
464    * appropriate position relative to the consonant(s) in the cluster. The
465    * shaping engine decomposes two- or three-part matras into their constituent
466    * parts before any repositioning. Matra characters are classified by which
467    * consonant in a conjunct they have affinity for and are reordered to the
468    * following positions:
469    *
470    *   o Before first half form in the syllable
471    *   o After subjoined consonants
472    *   o After post-form consonant
473    *   o After main consonant (for above marks)
474    *
475    * IMPLEMENTATION NOTES:
476    *
477    * The normalize() routine has already decomposed matras for us, so we don't
478    * need to worry about that.
479    */
480
481
482   /* 3.  Reorder marks to canonical order:
483    *
484    * Adjacent nukta and halant or nukta and vedic sign are always repositioned
485    * if necessary, so that the nukta is first.
486    *
487    * IMPLEMENTATION NOTES:
488    *
489    * We don't need to do this: the normalize() routine already did this for us.
490    */
491
492
493   /* Reorder characters */
494
495   for (i = start; i < base; i++)
496     info[i].indic_position() = POS_PRE;
497   info[base].indic_position() = POS_BASE;
498
499
500   /* Handle beginning Ra */
501   if (start + 2 <= end &&
502       info[start].indic_category() == OT_Ra &&
503       info[start + 1].indic_category() == OT_H)
504    {
505     info[start].indic_position() = POS_POST;
506     info[start].mask = mask_array[RPHF];
507    }
508
509   /* Attach ZWJ, ZWNJ, nukta, and halant to previous char to move with them. */
510   for (i = start + 1; i < end; i++)
511     if ((FLAG (info[i].indic_category()) &
512          (FLAG (OT_ZWNJ) | FLAG (OT_ZWJ) | FLAG (OT_N) | FLAG (OT_H))))
513       info[i].indic_position() = info[i - 1].indic_position();
514
515   /* We do bubble-sort, skip malicious clusters attempts */
516   if (end - start > 20)
517     return;
518
519   /* Sit tight, rock 'n roll! */
520   hb_bubble_sort (info + start, end - start, compare_indic_order);
521
522   /* Setup masks now */
523
524   /* Pre-base */
525   for (i = start; i < base; i++)
526     info[i].mask  |= mask_array[HALF] | mask_array[AKHN];
527   /* Base */
528   info[base].mask |= mask_array[AKHN];
529   /* Post-base */
530   for (i = base + 1; i < end; i++)
531     info[i].mask  |= mask_array[BLWF] | mask_array[PSTF];
532 }
533
534
535 static void
536 found_vowel_syllable (const hb_ot_map_t *map, hb_buffer_t *buffer, hb_mask_t *mask_array,
537                       unsigned int start, unsigned int end)
538 {
539   /* TODO
540    * Not clear to me how this should work.  Do the matras move to before the
541    * independent vowel?  No idea.
542    */
543 }
544
545 static void
546 found_standalone_cluster (const hb_ot_map_t *map, hb_buffer_t *buffer, hb_mask_t *mask_array,
547                           unsigned int start, unsigned int end)
548 {
549   /* TODO
550    * Easiest thing to do here is to convert the NBSP to consonant and
551    * call found_consonant_syllable.
552    */
553 }
554
555 static void
556 found_non_indic (const hb_ot_map_t *map, hb_buffer_t *buffer, hb_mask_t *mask_array,
557                  unsigned int start, unsigned int end)
558 {
559   /* Nothing to do right now.  If we ever switch to using the output
560    * buffer in the reordering process, we'd need to next_glyph() here. */
561 }
562
563 #include "hb-ot-shape-complex-indic-machine.hh"
564
565 static void
566 initial_reordering (const hb_ot_map_t *map,
567                     hb_face_t *face,
568                     hb_buffer_t *buffer,
569                     void *user_data HB_UNUSED)
570 {
571   hb_mask_t mask_array[ARRAY_LENGTH (indic_basic_features)] = {0};
572   unsigned int num_masks = ARRAY_LENGTH (indic_basic_features);
573   for (unsigned int i = 0; i < num_masks; i++)
574     mask_array[i] = map->get_1_mask (indic_basic_features[i].tag);
575
576   find_syllables (map, buffer, mask_array);
577 }
578
579 static void
580 final_reordering (const hb_ot_map_t *map,
581                   hb_face_t *face,
582                   hb_buffer_t *buffer,
583                   void *user_data HB_UNUSED)
584 {
585   HB_BUFFER_DEALLOCATE_VAR (buffer, indic_category);
586   HB_BUFFER_DEALLOCATE_VAR (buffer, indic_position);
587 }
588
589
590
591 HB_END_DECLS