summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDavid Turner <david@freetype.org>2002-11-13 23:28:08 +0000
committerDavid Turner <david@freetype.org>2002-11-13 23:28:08 +0000
commitec8736da9e090dcb58ee46e5ef2755496f76c999 (patch)
treedf18045a7af903d01f4f72ee1921e6301986668d /include
parent282e665f71ce4c67c4ae6c1bb1e9424b45e4c94b (diff)
downloadfreetype2-ec8736da9e090dcb58ee46e5ef2755496f76c999.tar.gz
updating documentation & changes
Diffstat (limited to 'include')
-rw-r--r--include/freetype/freetype.h9
-rw-r--r--include/freetype/ftchapters.h1
-rw-r--r--include/freetype/ftgzip.h18
3 files changed, 24 insertions, 4 deletions
diff --git a/include/freetype/freetype.h b/include/freetype/freetype.h
index 4e7b03bd7..3a41daf6a 100644
--- a/include/freetype/freetype.h
+++ b/include/freetype/freetype.h
@@ -2207,7 +2207,8 @@ FT_BEGIN_HEADER
/* changes the hinting to prevent stem width quantization. This */
/* results in glyph shapes that are more similar to the original, */
/* while being a bit more fuzzy ("better shapes", instead of */
- /* "better contrast" if you want :-) */
+ /* "better contrast" if you want :-) THIS IS STILL EXPERIMENTAL, */
+ /* FOR NOW, THIS WILL PRODUCE RESULTS SIMILAR TO NORMAL MODE !! */
/* */
/* FT_RENDER_MODE_MONO :: */
/* This mode corresponds to 1-bit bitmaps. */
@@ -2216,7 +2217,8 @@ FT_BEGIN_HEADER
/* This mode corresponds to horizontal RGB/BGR sub-pixel displays, */
/* like LCD-screens. It produces 8-bit bitmaps that are 3 times */
/* the width of the original glyph outline in pixels, and which use */
- /* the @FT_PIXEL_MODE_LCD mode. */
+ /* the @FT_PIXEL_MODE_LCD mode. THIS IS STILL EXPERIMENTAL, DO NOT */
+ /* USE FOR NOW !! */
/* */
/* FT_RENDER_MODE_LCD_V :: */
/* This mode corresponds to vertical RGB/BGR sub-pixel displays */
@@ -2227,7 +2229,8 @@ FT_BEGIN_HEADER
/* <Note> */
/* The LCD-optimized glyph bitmaps produced by FT_Render_Glyph are */
/* _not filtered_ to reduce color-fringes. It is up to the caller to */
- /* perform this pass. */
+ /* perform this pass. THIS IS STILL EXPERIMENTAL, DO NOT USE FOR NOW */
+ /* !! */
/* */
typedef enum FT_Render_Mode_
{
diff --git a/include/freetype/ftchapters.h b/include/freetype/ftchapters.h
index 6c201997a..c134ec122 100644
--- a/include/freetype/ftchapters.h
+++ b/include/freetype/ftchapters.h
@@ -30,6 +30,7 @@
/* type1_tables */
/* sfnt_names */
/* bdf_fonts */
+/* pfr_fonts */
/* */
/***************************************************************************/
diff --git a/include/freetype/ftgzip.h b/include/freetype/ftgzip.h
index 6dd3e3964..59de4ddf2 100644
--- a/include/freetype/ftgzip.h
+++ b/include/freetype/ftgzip.h
@@ -24,6 +24,22 @@
FT_BEGIN_HEADER
+ /*************************************************************************/
+ /* */
+ /* <Section> */
+ /* gzip */
+ /* */
+ /* <Title> */
+ /* GZIP Streams */
+ /* */
+ /* <Abstract> */
+ /* Using gzip-compressed font files */
+ /* */
+ /* <Description> */
+ /* This section contains the declaration of Gzip-specific functions. */
+ /* */
+ /*************************************************************************/
+
/************************************************************************
*
* @type: FT_Stream_OpenGzip
@@ -51,7 +67,7 @@ FT_BEGIN_HEADER
* process each time seeking backwards is needed within the stream
*
* in certain builds of the library, gzip compression recognition is
- * automatic when calling @FT_New_Face or @FT_OpenFace. This means that
+ * automatic when calling @FT_New_Face or @FT_Open_Face. This means that
* if no font driver is capable of handling the raw compressed file,
* the library will try to open a gzip stream from it and re-open
* the face with it.