Various minor doc fixes.

This commit is contained in:
Werner Lemberg 2022-02-05 09:06:39 +01:00
parent a173aead31
commit 24db55ecb8
2 changed files with 6 additions and 5 deletions

View File

@ -584,9 +584,9 @@ FT_BEGIN_HEADER
* The glyph image is translated with the `origin` vector before
* rendering.
*
* The first parameter is a pointer to an @FT_Glyph handle, that will be
* The first parameter is a pointer to an @FT_Glyph handle that will be
* _replaced_ by this function (with newly allocated data). Typically,
* you would use (omitting error handling):
* you would do something like the following (omitting error handling).
*
* ```
* FT_Glyph glyph;
@ -603,7 +603,7 @@ FT_BEGIN_HEADER
* if ( glyph->format != FT_GLYPH_FORMAT_BITMAP )
* {
* error = FT_Glyph_To_Bitmap( &glyph, FT_RENDER_MODE_NORMAL,
* 0, 1 );
* 0, 1 );
* if ( error ) // `glyph' unchanged
* ...
* }
@ -618,7 +618,7 @@ FT_BEGIN_HEADER
* FT_Done_Glyph( glyph );
* ```
*
* Here is another example, again without error handling:
* Here is another example, again without error handling.
*
* ```
* FT_Glyph glyphs[MAX_GLYPHS]

View File

@ -2787,11 +2787,12 @@
* A function used to load a single glyph within a given glyph slot,
* for a given size.
*
* @Input:
* @InOut:
* glyph ::
* A handle to a target slot object where the glyph
* will be loaded.
*
* @Input:
* size ::
* A handle to the source face size at which the glyph
* must be scaled/loaded.