[HarfBuzz] harfbuzz: Branch 'master'

Behdad Esfahbod behdad at kemper.freedesktop.org
Tue Sep 1 08:15:54 PDT 2015


 src/hb-ot-shape-complex-myanmar.cc |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

New commits:
commit c403d6320074455a5e8e48902c0ac4ee9685e33d
Author: Behdad Esfahbod <behdad at behdad.org>
Date:   Tue Sep 1 16:15:25 2015 +0100

    [myanmar] Use buffer->sort() to sort cluster
    
    This can possibly produce more granular clusters.

diff --git a/src/hb-ot-shape-complex-myanmar.cc b/src/hb-ot-shape-complex-myanmar.cc
index 9afcbf8..30a53c7 100644
--- a/src/hb-ot-shape-complex-myanmar.cc
+++ b/src/hb-ot-shape-complex-myanmar.cc
@@ -391,9 +391,8 @@ initial_reordering_consonant_syllable (hb_buffer_t *buffer,
     }
   }
 
-  buffer->merge_clusters (start, end);
   /* Sit tight, rock 'n roll! */
-  hb_stable_sort (info + start, end - start, compare_myanmar_order);
+  buffer->sort (start, end, compare_myanmar_order);
 }
 
 static void


More information about the HarfBuzz mailing list