4 * Copyright (C) 2011-2021 by Werner Lemberg.
6 * This file is part of the ttfautohint library, and may only be used,
7 * modified, and distributed under the terms given in `COPYING'. By
8 * continuing to use, modify, or distribute this file you indicate that you
9 * have read `COPYING' and understand and accept it fully.
11 * The file `COPYING' mentioned in the previous paragraph is distributed
12 * with the ttfautohint library.
16 /* originally file `ftgloadr.h' (2011-Mar-28) from FreeType */
18 /* heavily modified 2011 by Werner Lemberg <wl@gnu.org> */
24 #include FT_FREETYPE_H
31 typedef struct TA_SubGlyphRec_
40 } TA_SubGlyphRec
, *TA_SubGlyph
;
43 typedef struct TA_GlyphLoadRec_
45 FT_Outline outline
; /* outline */
47 FT_Vector
* extra_points
; /* extra points table */
48 FT_Vector
* extra_points2
; /* second extra points table */
50 FT_UInt num_subglyphs
; /* number of subglyphs */
51 TA_SubGlyph subglyphs
; /* subglyphs */
52 } TA_GlyphLoadRec
, *TA_GlyphLoad
;
55 typedef struct TA_GlyphLoaderRec_
59 FT_UInt max_subglyphs
;
63 TA_GlyphLoadRec current
;
64 } TA_GlyphLoaderRec
, *TA_GlyphLoader
;
67 /* create new empty glyph loader */
69 TA_GlyphLoader_New(TA_GlyphLoader
*aloader
);
71 /* add an extra points table to a glyph loader */
73 TA_GlyphLoader_CreateExtra(TA_GlyphLoader loader
);
75 /* destroy a glyph loader */
77 TA_GlyphLoader_Done(TA_GlyphLoader loader
);
79 /* reset a glyph loader (frees everything int it) */
81 TA_GlyphLoader_Reset(TA_GlyphLoader loader
);
83 /* rewind a glyph loader */
85 TA_GlyphLoader_Rewind(TA_GlyphLoader loader
);
87 /* check that there is enough space to add */
88 /* `n_points' and `n_contours' to the glyph loader */
90 TA_GlyphLoader_CheckPoints(TA_GlyphLoader loader
,
95 #define TA_GLYPHLOADER_CHECK_P(_loader, _count) \
97 || ((FT_UInt)(_loader)->base.outline.n_points \
98 + (FT_UInt)(_loader)->current.outline.n_points \
99 + (FT_UInt)(_count)) <= (_loader)->max_points)
101 #define TA_GLYPHLOADER_CHECK_C(_loader, _count) \
103 || ((FT_UInt)(_loader)->base.outline.n_contours \
104 + (FT_UInt)(_loader)->current.outline.n_contours \
105 + (FT_UInt)(_count)) <= (_loader)->max_contours)
107 #define TA_GLYPHLOADER_CHECK_POINTS(_loader, _points, _contours) \
108 ((TA_GLYPHLOADER_CHECK_P(_loader, _points) \
109 && TA_GLYPHLOADER_CHECK_C(_loader, _contours)) \
111 : TA_GlyphLoader_CheckPoints((_loader), \
112 (FT_UInt)(_points), \
113 (FT_UInt)(_contours)))
116 /* check that there is enough space to add */
117 /* `n_subs' sub-glyphs to a glyph loader */
119 TA_GlyphLoader_CheckSubGlyphs(TA_GlyphLoader loader
,
122 /* prepare a glyph loader, i.e. empty the current glyph */
124 TA_GlyphLoader_Prepare(TA_GlyphLoader loader
);
126 /* add the current glyph to the base glyph */
128 TA_GlyphLoader_Add(TA_GlyphLoader loader
);
130 /* copy points from one glyph loader to another */
132 TA_GlyphLoader_CopyPoints(TA_GlyphLoader target
,
133 TA_GlyphLoader source
);
139 #endif /* TAGLOADR_H_ */
141 /* end of tagloadr.h */