Visualization Library 2.0.0-b5

A lightweight C++ OpenGL middleware for 2D/3D graphics

VL     Star     Watch     Fork     Issue

[Download] [Tutorials] [All Classes] [Grouped Classes]
afmodule.h
Go to the documentation of this file.
1 /***************************************************************************/
2 /* */
3 /* afmodule.h */
4 /* */
5 /* Auto-fitter module implementation (specification). */
6 /* */
7 /* Copyright 2003, 2004, 2005 by */
8 /* David Turner, Robert Wilhelm, and Werner Lemberg. */
9 /* */
10 /* This file is part of the FreeType project, and may only be used, */
11 /* modified, and distributed under the terms of the FreeType project */
12 /* license, LICENSE.TXT. By continuing to use, modify, or distribute */
13 /* this file you indicate that you have read the license and */
14 /* understand and accept it fully. */
15 /* */
16 /***************************************************************************/
17 
18 
19 #ifndef __AFMODULE_H__
20 #define __AFMODULE_H__
21 
22 #include <ft2build.h>
23 #include FT_INTERNAL_OBJECTS_H
24 #include FT_MODULE_H
25 
26 #include "afloader.h"
27 
28 
30 
31 
32  /*
33  * This is the `extended' FT_Module structure which holds the
34  * autofitter's global data. Right before hinting a glyph, the data
35  * specific to the glyph's face (blue zones, stem widths, etc.) are
36  * loaded into `loader' (see function `af_loader_reset').
37  */
38 
39  typedef struct AF_ModuleRec_
40  {
42 
44 
46 
47  } AF_ModuleRec;
48 
49 
50 FT_DECLARE_MODULE(autofit_module_class)
51 
52 
54 
55 #endif /* __AFMODULE_H__ */
56 
57 
58 /* END */
#define FT_END_HEADER
Definition: ftheader.h:54
FT_ModuleRec root
Definition: afmodule.h:41
FT_UInt fallback_script
Definition: afmodule.h:43
#define FT_BEGIN_HEADER
Definition: ftheader.h:36
FT_BEGIN_HEADER struct AF_ModuleRec_ AF_ModuleRec
AF_LoaderRec loader[1]
Definition: afmodule.h:45
#define FT_DECLARE_MODULE(class_)
Definition: ftobjs.h:1416
unsigned int FT_UInt
Definition: fttypes.h:227