Rename remaining metrics uses to extents
This commit is contained in:
parent
22c537657c
commit
1482a39e56
|
@ -126,7 +126,7 @@ typedef void (*hb_font_get_glyph_advance_func_t) (hb_font_t *font, hb_face_t *fa
|
||||||
hb_position_t *x_advance, hb_position_t *y_advance);
|
hb_position_t *x_advance, hb_position_t *y_advance);
|
||||||
typedef void (*hb_font_get_glyph_extents_func_t) (hb_font_t *font, hb_face_t *face, const void *user_data,
|
typedef void (*hb_font_get_glyph_extents_func_t) (hb_font_t *font, hb_face_t *face, const void *user_data,
|
||||||
hb_codepoint_t glyph,
|
hb_codepoint_t glyph,
|
||||||
hb_glyph_extents_t *metrics);
|
hb_glyph_extents_t *extents);
|
||||||
typedef hb_bool_t (*hb_font_get_contour_point_func_t) (hb_font_t *font, hb_face_t *face, const void *user_data,
|
typedef hb_bool_t (*hb_font_get_contour_point_func_t) (hb_font_t *font, hb_face_t *face, const void *user_data,
|
||||||
unsigned int point_index, hb_codepoint_t glyph,
|
unsigned int point_index, hb_codepoint_t glyph,
|
||||||
hb_position_t *x, hb_position_t *y);
|
hb_position_t *x, hb_position_t *y);
|
||||||
|
@ -185,7 +185,7 @@ hb_font_get_glyph_advance (hb_font_t *font, hb_face_t *face,
|
||||||
void
|
void
|
||||||
hb_font_get_glyph_extents (hb_font_t *font, hb_face_t *face,
|
hb_font_get_glyph_extents (hb_font_t *font, hb_face_t *face,
|
||||||
hb_codepoint_t glyph,
|
hb_codepoint_t glyph,
|
||||||
hb_glyph_extents_t *metrics);
|
hb_glyph_extents_t *extents);
|
||||||
|
|
||||||
hb_bool_t
|
hb_bool_t
|
||||||
hb_font_get_contour_point (hb_font_t *font, hb_face_t *face,
|
hb_font_get_contour_point (hb_font_t *font, hb_face_t *face,
|
||||||
|
|
Loading…
Reference in New Issue