|
|
|
@ -450,7 +450,7 @@ reorder_syllable (hb_buffer_t *buffer, unsigned int start, unsigned int end) |
|
|
|
|
|
|
|
|
|
hb_glyph_info_t *info = buffer->info; |
|
|
|
|
|
|
|
|
|
#define POST_BASE_FLAGS (FLAG64 (USE_FM) | \ |
|
|
|
|
#define POST_BASE_FLAGS64 (FLAG64 (USE_FM) | \ |
|
|
|
|
FLAG64 (USE_FAbv) | \
|
|
|
|
|
FLAG64 (USE_FBlw) | \
|
|
|
|
|
FLAG64 (USE_FPst) | \
|
|
|
|
@ -474,7 +474,7 @@ reorder_syllable (hb_buffer_t *buffer, unsigned int start, unsigned int end) |
|
|
|
|
* glyph. */ |
|
|
|
|
for (unsigned int i = start + 1; i < end; i++) |
|
|
|
|
{ |
|
|
|
|
bool is_post_base_glyph = (FLAG64_UNSAFE (info[i].use_category()) & POST_BASE_FLAGS) || |
|
|
|
|
bool is_post_base_glyph = (FLAG64_UNSAFE (info[i].use_category()) & POST_BASE_FLAGS64) || |
|
|
|
|
is_halant (info[i]); |
|
|
|
|
if (is_post_base_glyph || i == end - 1) |
|
|
|
|
{ |
|
|
|
|