[OTLayout] Rename hb_ot_layout_position_get_size() to hb_ot_layout_get_size_params()

This commit is contained in:
Behdad Esfahbod 2012-11-30 08:10:26 +02:00
parent f18ff5a84d
commit e9ad71dee8
2 changed files with 6 additions and 5 deletions

View File

@ -641,8 +641,8 @@ hb_ot_layout_position_finish (hb_font_t *font, hb_buffer_t *buffer, hb_bool_t ze
}
hb_bool_t
hb_ot_layout_position_get_size (hb_face_t *face,
uint16_t *data /* OUT, 5 items */)
hb_ot_layout_get_size_params (hb_face_t *face,
uint16_t *data /* OUT, 5 items */)
{
const OT::GPOS &gpos = _get_gpos (face);
unsigned int script_index;

View File

@ -277,10 +277,11 @@ Xhb_ot_layout_lookup_position (hb_font_t *font,
hb_glyph_position_t *positions /* IN / OUT */);
#endif
/* Optical 'size' feature info. Returns true if found. */
/* Optical 'size' feature info. Returns true if found.
* XXX Add URL. */
hb_bool_t
hb_ot_layout_position_get_size (hb_face_t *face,
uint16_t *data /* OUT, 5 items */);
hb_ot_layout_get_size_params (hb_face_t *face,
uint16_t *data /* OUT, 5 items */);
HB_END_DECLS