More various documentation improvements and fixes.

This commit is contained in:
Werner Lemberg 2021-06-08 18:23:16 +02:00
parent d586927d16
commit 08f66322e3
9 changed files with 41 additions and 16 deletions

View File

@ -72,6 +72,9 @@ CHANGES BETWEEN 2.10.4 and 2.11.0
This work was Priyesh Kumar's GSoC 2020 project.
- PCF bitmap fonts compressed with LZW (these are usually files with
the extension `.pcf.Z`) are now handled correctly.
- Improved Meson build support for the library.
- Meson support to build The FreeType demo programs.

View File

@ -68,6 +68,10 @@ FT_BEGIN_HEADER
* @note:
* This function does nothing if compilation option `FT_DEBUG_LOGGING`
* isn't set.
*
* @since:
* 2.11
*
*/
FT_EXPORT( void )
FT_Trace_Set_Level( const char* tracing_level );
@ -83,10 +87,13 @@ FT_BEGIN_HEADER
* (i.e., to the value of the `FT2_DEBUG` environment value or to NULL
* if `FT2_DEBUG` is not set).
*
*
* @note:
* This function does nothing if compilation option `FT_DEBUG_LOGGING`
* isn't set.
*
* @since:
* 2.11
*
*/
FT_EXPORT( void )
FT_Trace_Set_Default_Level( void );
@ -111,6 +118,10 @@ FT_BEGIN_HEADER
*
* args::
* Arguments of debug or tracing messages.
*
* @since:
* 2.11
*
*/
typedef void
(*FT_Custom_Log_Handler)( const char* ft_component,
@ -133,6 +144,10 @@ FT_BEGIN_HEADER
* @note:
* This function does nothing if compilation option `FT_DEBUG_LOGGING`
* isn't set.
*
* @since:
* 2.11
*
*/
FT_EXPORT( void )
FT_Set_Log_Handler( FT_Custom_Log_Handler handler );
@ -150,6 +165,10 @@ FT_BEGIN_HEADER
* @note:
* This function does nothing if compilation option `FT_DEBUG_LOGGING`
* isn't set.
*
* @since:
* 2.11
*
*/
FT_EXPORT( void )
FT_Set_Default_Log_Handler( void );

View File

@ -343,6 +343,9 @@ FT_BEGIN_HEADER
* The font driver name is a valid `module_name` for @FT_Property_Set
* and @FT_Property_Get. This is not the same as @FT_Get_Font_Format.
*
* @since:
* 2.11
*
*/
#define FT_FACE_DRIVER_NAME( face ) \
( ( *(FT_Module_Class**)( ( face )->driver ) )->module_name )

View File

@ -109,7 +109,7 @@
#ifndef FT_MSB
FT_BASE_DEF ( FT_Int )
FT_BASE_DEF( FT_Int )
FT_MSB( FT_UInt32 z )
{
FT_Int shift = 0;

View File

@ -32,7 +32,7 @@
/* add padding according to filter weights */
FT_BASE_DEF (void)
FT_BASE_DEF( void )
ft_lcd_padding( FT_BBox* cbox,
FT_GlyphSlot slot,
FT_Render_Mode mode )
@ -368,7 +368,7 @@
#else /* !FT_CONFIG_OPTION_SUBPIXEL_RENDERING */
/* add padding to accommodate outline shifts */
FT_BASE_DEF (void)
FT_BASE_DEF( void )
ft_lcd_padding( FT_BBox* cbox,
FT_GlyphSlot slot,
FT_Render_Mode mode )

View File

@ -91,7 +91,7 @@
"LCD 8-bit bitmap",
"vertical LCD 8-bit bitmap",
"BGRA 32-bit color image bitmap",
"SDF 16-bit bitmap"
"SDF 8-bit bitmap"
};
#endif /* FT_DEBUG_LEVEL_TRACE */
@ -5602,7 +5602,7 @@
/* documentation is in freetype.h */
FT_EXPORT_DEF ( FT_Bool )
FT_EXPORT_DEF( FT_Bool )
FT_Get_Color_Glyph_Paint( FT_Face face,
FT_UInt base_glyph,
FT_Color_Root_Transform root_transform,
@ -5633,7 +5633,7 @@
/* documentation is in freetype.h */
FT_EXPORT_DEF ( FT_Bool )
FT_EXPORT_DEF( FT_Bool )
FT_Get_Paint_Layers( FT_Face face,
FT_LayerIterator* layer_iterator,
FT_OpaquePaint* paint )
@ -5687,7 +5687,7 @@
/* documentation is in freetype.h */
FT_EXPORT_DEF ( FT_Bool )
FT_EXPORT_DEF( FT_Bool )
FT_Get_Colorline_Stops ( FT_Face face,
FT_ColorStop * color_stop,
FT_ColorStopIterator *iterator )

View File

@ -665,11 +665,11 @@
static FT_Error
cid_hex_to_binary( FT_Byte* data,
FT_ULong data_len,
FT_ULong offset,
CID_Face face,
FT_ULong* data_written )
cid_hex_to_binary( FT_Byte* data,
FT_ULong data_len,
FT_ULong offset,
CID_Face face,
FT_ULong* data_written )
{
FT_Stream stream = face->root.stream;
FT_Error error;

View File

@ -629,7 +629,7 @@
}
FT_LOCAL_DEF ( FT_Bool )
FT_LOCAL_DEF( FT_Bool )
tt_face_get_colr_glyph_paint( TT_Face face,
FT_UInt base_glyph,
FT_Color_Root_Transform root_transform,
@ -745,7 +745,7 @@
}
FT_LOCAL_DEF ( FT_Bool )
FT_LOCAL_DEF( FT_Bool )
tt_face_get_colorline_stops( TT_Face face,
FT_ColorStop* color_stop,
FT_ColorStopIterator *iterator )

View File

@ -48,7 +48,7 @@ FT_BEGIN_HEADER
FT_Color_Root_Transform root_transform,
FT_OpaquePaint* paint );
FT_LOCAL ( FT_Bool )
FT_LOCAL( FT_Bool )
tt_face_get_paint_layers( TT_Face face,
FT_LayerIterator* iterator,
FT_OpaquePaint* paint );