summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorWerner Lemberg <wl@gnu.org>2018-09-01 11:01:52 +0200
committerWerner Lemberg <wl@gnu.org>2018-09-01 11:04:58 +0200
commit9be656bb0c0baa8df8c9fa30100e1cbe865346db (patch)
treedd538609d2d036d8797ad4c8da166bcf1a883048 /docs
parent809d5125af527dd589d303cd8ae988dad58d00d6 (diff)
downloadfreetype2-9be656bb0c0baa8df8c9fa30100e1cbe865346db.tar.gz
Remove `FT_Outline_{New,Done}_Internal'.
These public API functions(!) were always undocumented and have escaped all clean-up efforts until now. * include/freetype/ftoutln.h (FT_Outline_New_Internal, FT_Outline_Done_Internal): Removed. * src/base/ftoutln.h (FT_Outline_New_Internal, FT_Outline_Done_Internal): Merge into... (FT_Outline_New, FT_Outline_Done): ... these functions. * docs/README: Updated.
Diffstat (limited to 'docs')
-rw-r--r--docs/CHANGES31
1 files changed, 18 insertions, 13 deletions
diff --git a/docs/CHANGES b/docs/CHANGES
index 70bfe7aa3..2b4f4d8d1 100644
--- a/docs/CHANGES
+++ b/docs/CHANGES
@@ -6,7 +6,7 @@ CHANGES BETWEEN 2.9.1 and 2.10
II. IMPORTANT CHANGES
- - A bunch of new functions has been added to access and process
+ - A bunch of new functions has been added to access and process
COLR/CPAL data of OpenType fonts with coloured glyph layers.
FT_Palette_Data_Get
@@ -18,38 +18,43 @@ CHANGES BETWEEN 2.9.1 and 2.10
III. MISCELLANEOUS
- - `TT_Set_MM_Blend' could fail if call repeatedly with the same
+ - `TT_Set_MM_Blend' could fail if call repeatedly with the same
arguments.
- - The precision of handling deltas in Variation Fonts has been
- increased. The problem did only show up with multidimensional
+ - The precision of handling deltas in Variation Fonts has been
+ increased. The problem did only show up with multidimensional
designspaces.
- - New function `FT_Library_SetLcdGeometry' to set up the geometry
+ - New function `FT_Library_SetLcdGeometry' to set up the geometry
of LCD subpixels.
- FreeType now uses the `defaultChar' property of PCF fonts to set
- the glyph for the undefined character at glyph index 0 (as
+ the glyph for the undefined character at glyph index 0 (as
FreeType already does for all other supported font formats). As
- a consequence, the order of glyphs of a PCF font if accessed with
- FreeType can be different now compared to previous versions.
+ a consequence, the order of glyphs of a PCF font if accessed
+ with FreeType can be different now compared to previous
+ versions.
This change doesn't affect PCF font access with cmaps.
- - `FT_Select_Charmap' has been changed to allow parameter value
+ - `FT_Select_Charmap' has been changed to allow parameter value
`FT_ENCODING_NONE', which is valid for BDF, PCF, and Windows FNT
- formats to access built-in cmaps that don't have a predefined
+ formats to access built-in cmaps that don't have a predefined
`FT_Encoding' value.
- - A previously reserved field in the `FT_GlyphSlotRec' structure
+ - A previously reserved field in the `FT_GlyphSlotRec' structure
now holds the glyph index.
- - On Win32 platforms, the use of `_DLL' to build the library has
+ - On Win32 platforms, the use of `_DLL' to build the library has
been replaced with `DLL_EXPORT' and `DLL_IMPORT'.
- - The usual round of fuzzer bug fixes to better reject malformed
+ - The usual round of fuzzer bug fixes to better reject malformed
fonts.
+ - `FT_Outline_New_Internal' and `FT_Outline_Done_Internal' have
+ been removed. These two functions were public by oversight only
+ and were never documented either.
+
======================================================================