[API] Pass face to get_table()

This commit is contained in:
Behdad Esfahbod 2011-05-11 23:31:15 -04:00
parent b467827806
commit 7033518f75
4 changed files with 5 additions and 5 deletions

View File

@ -379,7 +379,7 @@ _hb_face_for_data_closure_destroy (hb_face_for_data_closure_t *closure)
}
static hb_blob_t *
_hb_face_for_data_get_table (hb_tag_t tag, void *user_data)
_hb_face_for_data_get_table (hb_face_t *face HB_UNUSED, hb_tag_t tag, void *user_data)
{
hb_face_for_data_closure_t *data = (hb_face_for_data_closure_t *) user_data;
@ -462,7 +462,7 @@ hb_face_reference_table (hb_face_t *face,
if (unlikely (!face || !face->get_table))
return hb_blob_get_empty ();
blob = face->get_table (tag, face->user_data);
blob = face->get_table (face, tag, face->user_data);
if (unlikely (!blob))
return hb_blob_get_empty ();

View File

@ -44,7 +44,7 @@ hb_face_t *
hb_face_create (hb_blob_t *blob,
unsigned int index);
typedef hb_blob_t * (*hb_get_table_func_t) (hb_tag_t tag, void *user_data);
typedef hb_blob_t * (*hb_get_table_func_t) (hb_face_t *face, hb_tag_t tag, void *user_data);
/* calls destroy() when not needing user_data anymore */
hb_face_t *

View File

@ -170,7 +170,7 @@ hb_ft_get_font_funcs (void)
static hb_blob_t *
get_table (hb_tag_t tag, void *user_data)
get_table (hb_face_t *face HB_UNUSED, hb_tag_t tag, void *user_data)
{
FT_Face ft_face = (FT_Face) user_data;
FT_Byte *buffer;

View File

@ -50,7 +50,7 @@ free_up (void *user_data)
}
static hb_blob_t *
get_table (hb_tag_t tag, void *user_data)
get_table (hb_face_t *face, hb_tag_t tag, void *user_data)
{
return hb_blob_get_empty ();
}