start of simple font viewer program. Doesn't correctl display the text yet

2002-12-04  James Henstridge  <james@daa.com.au>

    * src/font-view.c (main): start of simple font viewer program.
    Doesn't correctl display the text yet though :(

    * src/ftstream-vfs.c (FT_New_Face_From_URI): rename function to
    match naming scheme used elsewhere.
This commit is contained in:
James Henstridge 2002-12-04 05:40:24 +00:00 committed by James Henstridge
parent a5d6209b4f
commit 2f4b9395dc
5 changed files with 134 additions and 12 deletions

View file

@ -81,10 +81,10 @@ vfs_stream_open(FT_Stream stream,
/* load a typeface from a URI */
FT_Error
FT_New_URI_Face(FT_Library library,
const gchar* uri,
FT_Long face_index,
FT_Face *aface)
FT_New_Face_From_URI(FT_Library library,
const gchar* uri,
FT_Long face_index,
FT_Face *aface)
{
FT_Open_Args args;
FT_Stream stream;