|
|
|
@ -791,6 +791,29 @@ hb_font_get_nominal_glyph (hb_font_t *font, |
|
|
|
|
return font->get_nominal_glyph (unicode, glyph); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* hb_font_get_nominal_glyphs: |
|
|
|
|
* @font: a font. |
|
|
|
|
* |
|
|
|
|
* |
|
|
|
|
* |
|
|
|
|
* Return value: |
|
|
|
|
* |
|
|
|
|
* Since: REPLACEME |
|
|
|
|
**/ |
|
|
|
|
unsigned int |
|
|
|
|
hb_font_get_nominal_glyphs (hb_font_t *font, |
|
|
|
|
unsigned int count, |
|
|
|
|
const hb_codepoint_t *first_unicode, |
|
|
|
|
unsigned int unicode_stride, |
|
|
|
|
hb_codepoint_t *first_glyph, |
|
|
|
|
unsigned int glyph_stride) |
|
|
|
|
{ |
|
|
|
|
return font->get_nominal_glyphs (count, |
|
|
|
|
first_unicode, unicode_stride, |
|
|
|
|
first_glyph, glyph_stride); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* hb_font_get_variation_glyph: |
|
|
|
|
* @font: a font. |
|
|
|
|