projects
/
platform
/
upstream
/
libHarfBuzzSharp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7fa54ed
)
Don't try zeroing marks by GDEF if there are no non-ASCII
author
Behdad Esfahbod
<behdad@behdad.org>
Thu, 5 Nov 2015 06:55:11 +0000
(22:55 -0800)
committer
Behdad Esfahbod
<behdad@behdad.org>
Thu, 5 Nov 2015 06:59:28 +0000
(22:59 -0800)
This one is a hack, but should be ok.
src/hb-ot-shape.cc
patch
|
blob
|
history
diff --git
a/src/hb-ot-shape.cc
b/src/hb-ot-shape.cc
index 8d4b1698e9320750f7e29608cbd3d91263cacaa3..36b1297ddf3f56d5c51aa29b9f93e1f19ad3c001 100644
(file)
--- a/
src/hb-ot-shape.cc
+++ b/
src/hb-ot-shape.cc
@@
-638,6
+638,10
@@
zero_mark_widths_by_unicode (hb_buffer_t *buffer, bool adjust_offsets)
static inline void
zero_mark_widths_by_gdef (hb_buffer_t *buffer, bool adjust_offsets)
{
+ /* This one is a hack; Technically GDEF can mark ASCII glyphs as marks, but we don't listen. */
+ if (!(buffer->scratch_flags & HB_BUFFER_SCRATCH_FLAG_HAS_NON_ASCII))
+ return;
+
unsigned int count = buffer->len;
hb_glyph_info_t *info = buffer->info;
for (unsigned int i = 0; i < count; i++)