summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2018-10-13 11:48:49 -0400
committerBehdad Esfahbod <behdad@behdad.org>2018-10-13 12:09:59 -0400
commitc4502833b711a76cce1af0c5bf075692b965c991 (patch)
tree133981a1bd14860975bbfa54f808e911ab09f453
parentfc45e698f2d8a6d577f33b1e69a83714aceae528 (diff)
[kerx] Use sanitizer.get_num_glyphs() instead of face->get_num_glyphs()
-rw-r--r--src/hb-aat-layout-kerx-table.hh8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/hb-aat-layout-kerx-table.hh b/src/hb-aat-layout-kerx-table.hh
index ef6d02db..d59d6374 100644
--- a/src/hb-aat-layout-kerx-table.hh
+++ b/src/hb-aat-layout-kerx-table.hh
@@ -246,7 +246,7 @@ struct KerxSubTableFormat2
return false;
accelerator_t accel (*this,
- c->face->get_num_glyphs ());
+ c->sanitizer.get_num_glyphs ());
hb_kern_machine_t<accelerator_t> machine (accel);
machine.kern (c->font, c->buffer, c->plan->kern_mask);
@@ -383,11 +383,11 @@ struct KerxSubTableFormat4
unsigned int currAnchorPoint = *data++;
const Anchor markAnchor = c->ankr_table.get_anchor (c->buffer->info[mark].codepoint,
markAnchorPoint,
- c->face->get_num_glyphs (),
+ c->sanitizer.get_num_glyphs (),
c->ankr_end);
const Anchor currAnchor = c->ankr_table.get_anchor (c->buffer->cur ().codepoint,
currAnchorPoint,
- c->face->get_num_glyphs (),
+ c->sanitizer.get_num_glyphs (),
c->ankr_end);
o.x_offset = c->font->em_scale_x (markAnchor.xCoordinate) - c->font->em_scale_x (currAnchor.xCoordinate);
@@ -510,7 +510,7 @@ struct KerxSubTableFormat6
return false;
accelerator_t accel (*this,
- c->face->get_num_glyphs ());
+ c->sanitizer.get_num_glyphs ());
hb_kern_machine_t<accelerator_t> machine (accel);
machine.kern (c->font, c->buffer, c->plan->kern_mask);