mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-16 10:15:56 +00:00
[PairPos2] Micro-optimize
This commit is contained in:
parent
49ac5e11ef
commit
5996715436
1 changed files with 2 additions and 2 deletions
|
@ -223,8 +223,8 @@ struct PairPosFormat2_4
|
|||
c->buffer->idx, skippy_iter.idx);
|
||||
}
|
||||
|
||||
applied_first = valueFormat1.apply_value (c, this, v, buffer->cur_pos());
|
||||
applied_second = valueFormat2.apply_value (c, this, v + len1, buffer->pos[skippy_iter.idx]);
|
||||
applied_first = len1 && valueFormat1.apply_value (c, this, v, buffer->cur_pos());
|
||||
applied_second = len2 && valueFormat2.apply_value (c, this, v + len1, buffer->pos[skippy_iter.idx]);
|
||||
|
||||
if (applied_first || applied_second)
|
||||
if (HB_BUFFER_MESSAGE_MORE && c->buffer->messaging ())
|
||||
|
|
Loading…
Add table
Reference in a new issue