[API] Rename hb_face_create_for_data() to hb_face_create()
authorBehdad Esfahbod <behdad@behdad.org>
Thu, 12 May 2011 02:49:29 +0000 (22:49 -0400)
committerBehdad Esfahbod <behdad@behdad.org>
Thu, 12 May 2011 02:49:29 +0000 (22:49 -0400)
src/hb-font.cc
src/hb-font.h
src/hb-ft.cc
src/test.cc
test/test-object.c

index bb8f84c..c289f14 100644 (file)
@@ -394,8 +394,8 @@ _hb_face_for_data_get_table (hb_tag_t tag, void *user_data)
 }
 
 hb_face_t *
-hb_face_create_for_data (hb_blob_t    *blob,
-                        unsigned int  index)
+hb_face_create (hb_blob_t    *blob,
+               unsigned int  index)
 {
   if (unlikely (!blob || !hb_blob_get_length (blob)))
     return &_hb_face_nil;
index 7f05144..17e7f91 100644 (file)
@@ -41,8 +41,8 @@ typedef struct _hb_font_t hb_font_t;
  */
 
 hb_face_t *
-hb_face_create_for_data (hb_blob_t    *blob,
-                        unsigned int  index);
+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);
 
index 2566c05..3fe2365 100644 (file)
@@ -212,7 +212,7 @@ hb_ft_face_create (FT_Face           ft_face,
                           /* TODO: Check FT_FACE_FLAG_EXTERNAL_STREAM? */
                           HB_MEMORY_MODE_READONLY_MAY_MAKE_WRITABLE,
                           ft_face, destroy);
-    face = hb_face_create_for_data (blob, ft_face->face_index);
+    face = hb_face_create (blob, ft_face->face_index);
     hb_blob_destroy (blob);
   } else {
     face = hb_face_create_for_tables (get_table, ft_face, destroy);
index 79d7841..e3747ce 100644 (file)
@@ -86,7 +86,7 @@ main (int argc, char **argv)
   printf ("Opened font file %s: %u bytes long\n", argv[1], hb_blob_get_length (blob));
 
   /* Create the face */
-  face = hb_face_create_for_data (blob, 0 /* first face */);
+  face = hb_face_create (blob, 0 /* first face */);
 
   /* So, what now? */
 
index 1ad3b88..ccd0cab 100644 (file)
@@ -61,14 +61,14 @@ static void *
 create_face (void)
 {
   hb_blob_t *blob = (hb_blob_t *) create_blob ();
-  hb_face_t *face = hb_face_create_for_data (blob, 0);
+  hb_face_t *face = hb_face_create (blob, 0);
   hb_blob_destroy (blob);
   return face;
 }
 static void *
 create_face_inert (void)
 {
-  return hb_face_create_for_data (hb_blob_get_empty (), 0);
+  return hb_face_create (hb_blob_get_empty (), 0);
 }
 
 static void *