summaryrefslogtreecommitdiff
path: root/include/freetype/ftimage.h
diff options
context:
space:
mode:
authorDavid Turner <david@freetype.org>2001-02-13 17:42:49 +0000
committerDavid Turner <david@freetype.org>2001-02-13 17:42:49 +0000
commite231a6588203091276aabd32e4217e452675f3c4 (patch)
tree04575f17b2d543daf3050eb6a403cc9b660afb46 /include/freetype/ftimage.h
parent500dc854f6e683ed0829e8972ee223fbf7f5cd2e (diff)
downloadfreetype2-e231a6588203091276aabd32e4217e452675f3c4.tar.gz
update docmaker.py to support chapters and section block ordering
updated public header files, as well as "ftchapters.h" which only contains comment that hold the list of section chapters..
Diffstat (limited to 'include/freetype/ftimage.h')
-rw-r--r--include/freetype/ftimage.h55
1 files changed, 28 insertions, 27 deletions
diff --git a/include/freetype/ftimage.h b/include/freetype/ftimage.h
index 8db53395f..22e93bb9e 100644
--- a/include/freetype/ftimage.h
+++ b/include/freetype/ftimage.h
@@ -79,6 +79,34 @@ FT_BEGIN_HEADER
/*************************************************************************/
/* */
+ /* <Struct> */
+ /* FT_BBox */
+ /* */
+ /* <Description> */
+ /* A structure used to hold an outline's bounding box, i.e., the */
+ /* coordinates of its extrema in the horizontal and vertical */
+ /* directions. */
+ /* */
+ /* <Fields> */
+ /* xMin :: The horizontal minimum (left-most). */
+ /* */
+ /* yMin :: The vertical minimum (bottom-most). */
+ /* */
+ /* xMax :: The horizontal maximum (right-most). */
+ /* */
+ /* yMax :: The vertical maximum (top-most). */
+ /* */
+ typedef struct FT_BBox_
+ {
+ FT_Pos xMin, yMin;
+ FT_Pos xMax, yMax;
+
+ } FT_BBox;
+
+
+
+ /*************************************************************************/
+ /* */
/* <Enum> */
/* FT_Pixel_Mode */
/* */
@@ -652,33 +680,6 @@ FT_BEGIN_HEADER
/*************************************************************************/
/* */
/* <Struct> */
- /* FT_BBox */
- /* */
- /* <Description> */
- /* A structure used to hold an outline's bounding box, i.e., the */
- /* coordinates of its extrema in the horizontal and vertical */
- /* directions. */
- /* */
- /* <Fields> */
- /* xMin :: The horizontal minimum (left-most). */
- /* */
- /* yMin :: The vertical minimum (bottom-most). */
- /* */
- /* xMax :: The horizontal maximum (right-most). */
- /* */
- /* yMax :: The vertical maximum (top-most). */
- /* */
- typedef struct FT_BBox_
- {
- FT_Pos xMin, yMin;
- FT_Pos xMax, yMax;
-
- } FT_BBox;
-
-
- /*************************************************************************/
- /* */
- /* <Struct> */
/* FT_Span */
/* */
/* <Description> */