From 749c7bce97923922993f0e2d31c4fc4be5798d35 Mon Sep 17 00:00:00 2001 From: David Turner Date: Fri, 8 Feb 2002 13:54:10 +0000 Subject: [PATCH] setting PATH_LEVEL to 8 removing FT_Get_Next_Char from the API (for the 2.0.8 release) --- ChangeLog | 3 +++ include/freetype/freetype.h | 48 +------------------------------------ 2 files changed, 4 insertions(+), 47 deletions(-) diff --git a/ChangeLog b/ChangeLog index 2bfda0ffa..cd283f0d3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2002-02-08 David Turner + * include/freetype/freetype.h: setting PATCH_LEVEL to 8 and + removing FT_Get_Next_Char from the API (temporarily) + * include/freetype/freetype.h: Adding comments to FT_Get_Next_Char; note that this function might temporarily be removed for the 2.0.8 release. diff --git a/include/freetype/freetype.h b/include/freetype/freetype.h index e8b444107..40a4e659b 100644 --- a/include/freetype/freetype.h +++ b/include/freetype/freetype.h @@ -35,7 +35,7 @@ /* */ #define FREETYPE_MAJOR 2 #define FREETYPE_MINOR 0 -#define FREETYPE_PATCH 7 +#define FREETYPE_PATCH 8 #include @@ -122,7 +122,6 @@ FT_BEGIN_HEADER /* FT_Set_Transform */ /* FT_Load_Glyph */ /* FT_Get_Char_Index */ - /* FT_Get_Next_Char */ /* FT_Get_Name_Index */ /* FT_Load_Char */ /* */ @@ -2392,51 +2391,6 @@ FT_BEGIN_HEADER FT_ULong charcode ); - /*************************************************************************/ - /* */ - /* */ - /* FT_Get_Next_Char */ - /* */ - /* */ - /* Returns the next charcode that is defined in a face's current */ - /* charmap. */ - /* */ - /* */ - /* face :: A handle to the source face object. */ - /* */ - /* charcode :: The current character code. */ - /* */ - /* */ - /* The next character code in the current charmap. 0 means */ - /* `no encoded values above charcode'. */ - /* */ - /* */ - /* You can always retrieve the first charcode in a given charmap */ - /* by calling FT_Get_Next_Char(face,0). */ - /* */ - /* (This assumes that 0 is not a valid character code in any known */ - /* charmap format, which is basically true for TrueType and Type1.) */ - /* */ - /* Note that certain charmaps can map character codes to "empty" */ - /* glyphs sometimes. Here are two examples: */ - /* */ - /* - The embedded bitmaps were stripped from the font, and certain */ - /* glyphs didn't have a corresponding outline. */ - /* */ - /* - The font is a subset of another one and was generated with a */ - /* tool that simply changed the glyph tables, but not the */ - /* charmap. */ - /* */ - /* You should thus use this function only to enumerate charmaps. If */ - /* you need to determine the list of "displayable" glyphs, you have */ - /* to use `FT_Load_Glyph' or wait until we provide another API to do */ - /* that. */ - /* */ - FT_EXPORT( FT_ULong ) - FT_Get_Next_Char( FT_Face face, - FT_ULong charcode ); - - /*************************************************************************/ /* */ /* */