Fix typos, add comments.

This commit is contained in:
Werner Lemberg 2012-08-23 13:34:26 +02:00
parent 37ec8c3833
commit f76f491ff7
2 changed files with 10 additions and 10 deletions

View File

@ -4,7 +4,7 @@
/* */ /* */
/* Auto-fitter module implementation (body). */ /* Auto-fitter module implementation (body). */
/* */ /* */
/* Copyright 2003-2006, 2009, 2011 by */ /* Copyright 2003-2006, 2009, 2011-2012 by */
/* David Turner, Robert Wilhelm, and Werner Lemberg. */ /* David Turner, Robert Wilhelm, and Werner Lemberg. */
/* */ /* */
/* This file is part of the FreeType project, and may only be used, */ /* This file is part of the FreeType project, and may only be used, */
@ -68,10 +68,10 @@
FT_DEFINE_AUTOHINTER_SERVICE( FT_DEFINE_AUTOHINTER_SERVICE(
af_autofitter_service, af_autofitter_service,
NULL, NULL, /* reset_face */
NULL, NULL, /* get_global_hints */
NULL, NULL, /* done_global_hints */
(FT_AutoHinter_GlyphLoadFunc)af_autofitter_load_glyph ) (FT_AutoHinter_GlyphLoadFunc)af_autofitter_load_glyph ) /* load_glyph */
FT_DEFINE_MODULE( FT_DEFINE_MODULE(
autofit_module_class, autofit_module_class,
@ -83,7 +83,7 @@
0x10000L, /* version 1.0 of the autofitter */ 0x10000L, /* version 1.0 of the autofitter */
0x20000L, /* requires FreeType 2.0 or above */ 0x20000L, /* requires FreeType 2.0 or above */
(const void*)&AF_AF_AUTOFITTER_SERVICE_GET, (const void*)&AF_AUTOFITTER_SERVICE_GET,
(FT_Module_Constructor)af_autofitter_init, (FT_Module_Constructor)af_autofitter_init,
(FT_Module_Destructor) af_autofitter_done, (FT_Module_Destructor) af_autofitter_done,

View File

@ -4,7 +4,7 @@
/* */ /* */
/* The FreeType position independent code services for autofit module. */ /* The FreeType position independent code services for autofit module. */
/* */ /* */
/* Copyright 2009, 2011 by */ /* Copyright 2009, 2011-2012 by */
/* Oran Agra and Mickey Gabel. */ /* Oran Agra and Mickey Gabel. */
/* */ /* */
/* This file is part of the FreeType project, and may only be used, */ /* This file is part of the FreeType project, and may only be used, */
@ -26,8 +26,8 @@ FT_BEGIN_HEADER
#ifndef FT_CONFIG_OPTION_PIC #ifndef FT_CONFIG_OPTION_PIC
#define AF_SCRIPT_CLASSES_GET af_script_classes #define AF_SCRIPT_CLASSES_GET af_script_classes
#define AF_AF_AUTOFITTER_SERVICE_GET af_autofitter_service #define AF_AUTOFITTER_SERVICE_GET af_autofitter_service
#else /* FT_CONFIG_OPTION_PIC */ #else /* FT_CONFIG_OPTION_PIC */
@ -54,7 +54,7 @@ FT_BEGIN_HEADER
( (AFModulePIC*)((lib)->pic_container.autofit) ) ( (AFModulePIC*)((lib)->pic_container.autofit) )
#define AF_SCRIPT_CLASSES_GET \ #define AF_SCRIPT_CLASSES_GET \
( GET_PIC( FT_FACE_LIBRARY(globals->face) )->af_script_classes ) ( GET_PIC( FT_FACE_LIBRARY(globals->face) )->af_script_classes )
#define AF_AF_AUTOFITTER_SERVICE_GET \ #define AF_AUTOFITTER_SERVICE_GET \
( GET_PIC( library )->af_autofitter_service ) ( GET_PIC( library )->af_autofitter_service )
/* see afpic.c for the implementation */ /* see afpic.c for the implementation */