From 293a877a99deda141e509eb6daad0756bf8f9234 Mon Sep 17 00:00:00 2001 From: Werner Lemberg Date: Tue, 5 Aug 2008 18:36:15 +0000 Subject: [PATCH] Minor documentation improvements. --- docs/INSTALL | 4 +++- include/freetype/ftglyph.h | 12 ++++++------ 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/docs/INSTALL b/docs/INSTALL index 585c4dbea..de50d0c2e 100644 --- a/docs/INSTALL +++ b/docs/INSTALL @@ -20,6 +20,8 @@ I. Normal installation and upgrades Make for automatic compilation, since other make tools won't work (this includes BSD Make). + GNU Make VERSION 3.80 OR NEWER IS NEEDED! + 3. On VMS with the `mms' build tool @@ -76,7 +78,7 @@ II. Custom builds of the library ---------------------------------------------------------------------- -Copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 by +Copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 by David Turner, Robert Wilhelm, and Werner Lemberg. This file is part of the FreeType project, and may only be used, diff --git a/include/freetype/ftglyph.h b/include/freetype/ftglyph.h index 26f78cde4..668a73fe8 100644 --- a/include/freetype/ftglyph.h +++ b/include/freetype/ftglyph.h @@ -4,7 +4,7 @@ /* */ /* FreeType convenience functions to handle glyphs (specification). */ /* */ -/* Copyright 1996-2001, 2002, 2003, 2006 by */ +/* Copyright 1996-2001, 2002, 2003, 2006, 2008 by */ /* David Turner, Robert Wilhelm, and Werner Lemberg. */ /* */ /* This file is part of the FreeType project, and may only be used, */ @@ -428,7 +428,7 @@ FT_BEGIN_HEADER /* the_glyph :: A pointer to a handle to the target glyph. */ /* */ /* */ - /* render_mode :: An enumeration that describe how the data is */ + /* render_mode :: An enumeration that describes how the data is */ /* rendered. */ /* */ /* origin :: A pointer to a vector used to translate the glyph */ @@ -448,8 +448,8 @@ FT_BEGIN_HEADER /* rendering. */ /* */ /* The first parameter is a pointer to an @FT_Glyph handle, that will */ - /* be replaced by this function. Typically, you would use (omitting */ - /* error handling): */ + /* be _replaced_ by this function (with newly allocated data). */ + /* Typically, you would use (omitting error handling): */ /* */ /* */ /* { */ @@ -463,12 +463,12 @@ FT_BEGIN_HEADER /* // extract glyph image */ /* error = FT_Get_Glyph( face->glyph, &glyph ); */ /* */ - /* // convert to a bitmap (default render mode + destroy old) */ + /* // convert to a bitmap (default render mode + destroying old) */ /* if ( glyph->format != FT_GLYPH_FORMAT_BITMAP ) */ /* { */ /* error = FT_Glyph_To_Bitmap( &glyph, FT_RENDER_MODE_DEFAULT, */ /* 0, 1 ); */ - /* if ( error ) // glyph unchanged */ + /* if ( error ) // `glyph' unchanged */ /* ... */ /* } */ /* */