summaryrefslogtreecommitdiff
path: root/include/freetype/internal/ftobjs.h
diff options
context:
space:
mode:
authorNikhil Ramakrishnan <ramakrishnan.nikhil@gmail.com>2018-06-18 00:38:36 +0530
committerNikhil Ramakrishnan <ramakrishnan.nikhil@gmail.com>2018-06-18 03:40:29 +0530
commite13599a0369cf68279b991dbab3e845d7a300399 (patch)
treeeb5728ee960e08e97e58b91bb6395d2524ba3089 /include/freetype/internal/ftobjs.h
parentd573a46f771c956c486412ccc756efa1b283e455 (diff)
downloadfreetype2-e13599a0369cf68279b991dbab3e845d7a300399.tar.gz
Change documentation markup tags to lowercase.
Implemented as per discussion in http://lists.nongnu.org/archive/html/freetype-devel/2018-06/msg00073.html No change in functionality, of course.
Diffstat (limited to 'include/freetype/internal/ftobjs.h')
-rw-r--r--include/freetype/internal/ftobjs.h106
1 files changed, 53 insertions, 53 deletions
diff --git a/include/freetype/internal/ftobjs.h b/include/freetype/internal/ftobjs.h
index cfa7341e4..88ced183f 100644
--- a/include/freetype/internal/ftobjs.h
+++ b/include/freetype/internal/ftobjs.h
@@ -293,15 +293,15 @@ FT_BEGIN_HEADER
/**************************************************************************
*
- * @Struct:
+ * @struct:
* FT_Face_InternalRec
*
- * @Description:
+ * @description:
* This structure contains the internal fields of each FT_Face
* object. These fields may change between different releases of
* FreeType.
*
- * @Fields:
+ * @fields:
* max_points ::
* The maximum number of points used to store the vectorial outline
* of any glyph in this face. If this value cannot be known in
@@ -386,15 +386,15 @@ FT_BEGIN_HEADER
/**************************************************************************
*
- * @Struct:
+ * @struct:
* FT_Slot_InternalRec
*
- * @Description:
+ * @description:
* This structure contains the internal fields of each FT_GlyphSlot
* object. These fields may change between different releases of
* FreeType.
*
- * @Fields:
+ * @fields:
* loader ::
* The glyph loader object used to load outlines
* into the glyph slot.
@@ -446,14 +446,14 @@ FT_BEGIN_HEADER
/**************************************************************************
*
- * @Struct:
+ * @struct:
* FT_Size_InternalRec
*
- * @Description:
+ * @description:
* This structure contains the internal fields of each FT_Size
* object.
*
- * @Fields:
+ * @fields:
* module_data ::
* Data specific to a driver module.
*
@@ -490,13 +490,13 @@ FT_BEGIN_HEADER
/**************************************************************************
*
- * @Struct:
+ * @struct:
* FT_ModuleRec
*
- * @Description:
+ * @description:
* A module object instance.
*
- * @Fields:
+ * @fields:
* clazz ::
* A pointer to the module's class.
*
@@ -550,24 +550,24 @@ FT_BEGIN_HEADER
/**************************************************************************
*
- * @Function:
+ * @function:
* FT_Get_Module_Interface
*
- * @Description:
+ * @description:
* Finds a module and returns its specific interface as a typeless
* pointer.
*
- * @Input:
+ * @input:
* library ::
* A handle to the library object.
*
* module_name ::
* The module's name (as an ASCII string).
*
- * @Return:
+ * @return:
* A module-specific interface if available, 0 otherwise.
*
- * @Note:
+ * @note:
* You should better be familiar with FreeType internals to know
* which module to look for, and what its interface is :-)
*/
@@ -623,24 +623,24 @@ FT_BEGIN_HEADER
/**************************************************************************
*
- * @Function:
+ * @function:
* FT_New_GlyphSlot
*
- * @Description:
+ * @description:
* It is sometimes useful to have more than one glyph slot for a
* given face object. This function is used to create additional
* slots. All of them are automatically discarded when the face is
* destroyed.
*
- * @Input:
+ * @input:
* face ::
* A handle to a parent face object.
*
- * @Output:
+ * @output:
* aslot ::
* A handle to a new glyph slot object.
*
- * @Return:
+ * @return:
* FreeType error code. 0 means success.
*/
FT_BASE( FT_Error )
@@ -650,15 +650,15 @@ FT_BEGIN_HEADER
/**************************************************************************
*
- * @Function:
+ * @function:
* FT_Done_GlyphSlot
*
- * @Description:
+ * @description:
* Destroys a given glyph slot. Remember however that all slots are
* automatically destroyed with its parent. Using this function is
* not always mandatory.
*
- * @Input:
+ * @input:
* slot ::
* A handle to a target glyph slot.
*/
@@ -785,14 +785,14 @@ FT_BEGIN_HEADER
/**************************************************************************
*
- * @Struct:
+ * @struct:
* FT_DriverRec
*
- * @Description:
+ * @description:
* The root font driver class. A font driver is responsible for
* managing and loading font files of a given format.
*
- * @Fields:
+ * @fields:
* root ::
* Contains the fields of the root module class.
*
@@ -839,15 +839,15 @@ FT_BEGIN_HEADER
/**************************************************************************
*
- * @Struct:
+ * @struct:
* FT_LibraryRec
*
- * @Description:
+ * @description:
* The FreeType library class. This is the root of all FreeType
* data. Use FT_New_Library() to create a library object, and
* FT_Done_Library() to discard it and all child objects.
*
- * @Fields:
+ * @fields:
* memory ::
* The library's memory object. Manages memory
* allocation.
@@ -974,13 +974,13 @@ FT_BEGIN_HEADER
/**************************************************************************
*
- * @Function:
+ * @function:
* FT_New_Memory
*
- * @Description:
+ * @description:
* Creates a new memory object.
*
- * @Return:
+ * @return:
* A pointer to the new memory object. 0 in case of error.
*/
FT_BASE( FT_Memory )
@@ -989,13 +989,13 @@ FT_BEGIN_HEADER
/**************************************************************************
*
- * @Function:
+ * @function:
* FT_Done_Memory
*
- * @Description:
+ * @description:
* Discards memory manager.
*
- * @Input:
+ * @input:
* memory ::
* A handle to the memory manager.
*/
@@ -1018,10 +1018,10 @@ FT_BEGIN_HEADER
/**************************************************************************
*
- * @Macro:
+ * @macro:
* FT_DEFINE_OUTLINE_FUNCS
*
- * @Description:
+ * @description:
* Used to initialize an instance of FT_Outline_Funcs struct.
* The struct will be allocated in the global scope (or the scope
* where the macro is used).
@@ -1047,10 +1047,10 @@ FT_BEGIN_HEADER
/**************************************************************************
*
- * @Macro:
+ * @macro:
* FT_DEFINE_RASTER_FUNCS
*
- * @Description:
+ * @description:
* Used to initialize an instance of FT_Raster_Funcs struct.
* The struct will be allocated in the global scope (or the scope
* where the macro is used).
@@ -1077,10 +1077,10 @@ FT_BEGIN_HEADER
/**************************************************************************
*
- * @Macro:
+ * @macro:
* FT_DEFINE_GLYPH
*
- * @Description:
+ * @description:
* The struct will be allocated in the global scope (or the scope
* where the macro is used).
*/
@@ -1110,17 +1110,17 @@ FT_BEGIN_HEADER
/**************************************************************************
*
- * @Macro:
+ * @macro:
* FT_DECLARE_RENDERER
*
- * @Description:
+ * @description:
* Used to create a forward declaration of a
* FT_Renderer_Class struct instance.
*
- * @Macro:
+ * @macro:
* FT_DEFINE_RENDERER
*
- * @Description:
+ * @description:
* Used to initialize an instance of FT_Renderer_Class struct.
*
* The struct will be allocated in the global scope (or the scope
@@ -1171,26 +1171,26 @@ FT_BEGIN_HEADER
/**************************************************************************
*
- * @Macro:
+ * @macro:
* FT_DECLARE_MODULE
*
- * @Description:
+ * @description:
* Used to create a forward declaration of a
* FT_Module_Class struct instance.
*
- * @Macro:
+ * @macro:
* FT_DEFINE_MODULE
*
- * @Description:
+ * @description:
* Used to initialize an instance of an FT_Module_Class struct.
*
* The struct will be allocated in the global scope (or the scope
* where the macro is used).
*
- * @Macro:
+ * @macro:
* FT_DEFINE_ROOT_MODULE
*
- * @Description:
+ * @description:
* Used to initialize an instance of an FT_Module_Class struct inside
* another struct that contains it or in a function that initializes
* that containing struct.