[HarfBuzz] harfbuzz: Branch 'master'
Behdad Esfahbod
behdad at kemper.freedesktop.org
Wed May 23 05:01:06 UTC 2018
src/hb-private.hh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 6c818c5516913f2c8192d58bd2724b1d3bb60d24
Author: Behdad Esfahbod <behdad at behdad.org>
Date: Tue May 22 22:00:05 2018 -0700
Actually enable vectorized operations
Fixup for previous commit. Was accidentally turned off.
diff --git a/src/hb-private.hh b/src/hb-private.hh
index 547379cd..183f2a41 100644
--- a/src/hb-private.hh
+++ b/src/hb-private.hh
@@ -999,7 +999,7 @@ struct hb_vector_size_t
inline hb_vector_size_t process (const hb_vector_size_t &o) const
{
hb_vector_size_t r;
-#if HB_VECTOR_SIZE && 0
+#if HB_VECTOR_SIZE
if (HB_VECTOR_SIZE && 0 == (byte_size * 8) % HB_VECTOR_SIZE)
for (unsigned int i = 0; i < ARRAY_LENGTH (u.vec); i++)
Op::process (r.u.vec[i], u.vec[i], o.u.vec[i]);
More information about the HarfBuzz
mailing list