[HarfBuzz] harfbuzz: Branch 'master'
Behdad Esfahbod
behdad at kemper.freedesktop.org
Mon Mar 2 16:07:43 PST 2015
src/hb-buffer.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 8ac345e5c0ed0aad6547592ea0839aabfb4ba980
Author: Behdad Esfahbod <behdad at behdad.org>
Date: Mon Mar 2 16:06:55 2015 -0800
Fix reverse_range() to only reverse alt array if positions are used
In hb-coretext, when we were using scratch buffer for book-keeping,
a reverse_range() caused by the notdef-insertion loop could mess up
our log_clusters. Ouch!
diff --git a/src/hb-buffer.cc b/src/hb-buffer.cc
index 0500aa2..942177c 100644
--- a/src/hb-buffer.cc
+++ b/src/hb-buffer.cc
@@ -454,7 +454,7 @@ hb_buffer_t::reverse_range (unsigned int start,
info[j] = t;
}
- if (pos) {
+ if (have_positions) {
for (i = start, j = end - 1; i < j; i++, j--) {
hb_glyph_position_t t;
More information about the HarfBuzz
mailing list