[hb-coretext] Fix cluster order of notdef runs in RTL text
diff --git a/src/hb-coretext.cc b/src/hb-coretext.cc index fe5f31b..f08aec5 100644 --- a/src/hb-coretext.cc +++ b/src/hb-coretext.cc
@@ -843,6 +843,7 @@ CGGlyph notdef = 0; double advance = CTFontGetAdvancesForGlyphs (font_data->ct_font, kCTFontHorizontalOrientation, ¬def, NULL, 1); + unsigned int old_len = buffer->len; for (CFIndex j = range.location; j < range.location + range.length; j++) { UniChar ch = CFStringGetCharacterAtIndex (string_ref, j); @@ -865,6 +866,8 @@ info++; buffer->len++; } + if (HB_DIRECTION_IS_BACKWARD (buffer->props.direction)) + buffer->reverse_range (old_len, buffer->len); continue; } }