• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /***************************************************************************/
2 /*                                                                         */
3 /*  fttrace.h                                                              */
4 /*                                                                         */
5 /*    Tracing handling (specification only).                               */
6 /*                                                                         */
7 /*  Copyright 2002-2018 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   /* definitions of trace levels for FreeType 2 */
20 
21   /* the first level must always be `trace_any' */
22 FT_TRACE_DEF( any )
23 
24   /* base components */
25 FT_TRACE_DEF( calc )      /* calculations            (ftcalc.c)   */
26 FT_TRACE_DEF( memory )    /* memory manager          (ftobjs.c)   */
27 FT_TRACE_DEF( stream )    /* stream manager          (ftstream.c) */
28 FT_TRACE_DEF( io )        /* i/o interface           (ftsystem.c) */
29 FT_TRACE_DEF( list )      /* list management         (ftlist.c)   */
30 FT_TRACE_DEF( init )      /* initialization          (ftinit.c)   */
31 FT_TRACE_DEF( objs )      /* base objects            (ftobjs.c)   */
32 FT_TRACE_DEF( outline )   /* outline management      (ftoutln.c)  */
33 FT_TRACE_DEF( glyph )     /* glyph management        (ftglyph.c)  */
34 FT_TRACE_DEF( gloader )   /* glyph loader            (ftgloadr.c) */
35 
36 FT_TRACE_DEF( raster )    /* monochrome rasterizer   (ftraster.c) */
37 FT_TRACE_DEF( smooth )    /* anti-aliasing raster    (ftgrays.c)  */
38 FT_TRACE_DEF( mm )        /* MM interface            (ftmm.c)     */
39 FT_TRACE_DEF( raccess )   /* resource fork accessor  (ftrfork.c)  */
40 FT_TRACE_DEF( synth )     /* bold/slant synthesizer  (ftsynth.c)  */
41 FT_TRACE_DEF( bitmap )    /* bitmap checksum         (ftobjs.c)   */
42 FT_TRACE_DEF( psprops )   /* PS driver properties    (ftpsprop.c) */
43 
44   /* Cache sub-system */
45 FT_TRACE_DEF( cache )     /* cache sub-system        (ftcache.c, etc.) */
46 
47   /* SFNT driver components */
48 FT_TRACE_DEF( sfdriver )  /* SFNT font driver        (sfdriver.c) */
49 FT_TRACE_DEF( sfobjs )    /* SFNT object handler     (sfobjs.c)   */
50 FT_TRACE_DEF( ttcmap )    /* charmap handler         (ttcmap.c)   */
51 FT_TRACE_DEF( ttkern )    /* kerning handler         (ttkern.c)   */
52 FT_TRACE_DEF( ttload )    /* basic TrueType tables   (ttload.c)   */
53 FT_TRACE_DEF( ttmtx )     /* metrics-related tables  (ttmtx.c)    */
54 FT_TRACE_DEF( ttpost )    /* PS table processing     (ttpost.c)   */
55 FT_TRACE_DEF( ttsbit )    /* TrueType sbit handling  (ttsbit.c)   */
56 FT_TRACE_DEF( ttbdf )     /* TrueType embedded BDF   (ttbdf.c)    */
57 
58   /* TrueType driver components */
59 FT_TRACE_DEF( ttdriver )  /* TT font driver          (ttdriver.c) */
60 FT_TRACE_DEF( ttgload )   /* TT glyph loader         (ttgload.c)  */
61 FT_TRACE_DEF( ttinterp )  /* bytecode interpreter    (ttinterp.c) */
62 FT_TRACE_DEF( ttobjs )    /* TT objects manager      (ttobjs.c)   */
63 FT_TRACE_DEF( ttpload )   /* TT data/program loader  (ttpload.c)  */
64 FT_TRACE_DEF( ttgxvar )   /* TrueType GX var handler (ttgxvar.c)  */
65 
66   /* Type 1 driver components */
67 FT_TRACE_DEF( t1afm )
68 FT_TRACE_DEF( t1driver )
69 FT_TRACE_DEF( t1gload )
70 FT_TRACE_DEF( t1load )
71 FT_TRACE_DEF( t1objs )
72 FT_TRACE_DEF( t1parse )
73 
74   /* PostScript helper module `psaux' */
75 FT_TRACE_DEF( t1decode )
76 FT_TRACE_DEF( cffdecode )
77 FT_TRACE_DEF( psobjs )
78 FT_TRACE_DEF( psconv )
79 
80   /* PostScript hinting module `pshinter' */
81 FT_TRACE_DEF( pshrec )
82 FT_TRACE_DEF( pshalgo )
83 
84   /* Type 2 driver components */
85 FT_TRACE_DEF( cffdriver )
86 FT_TRACE_DEF( cffgload )
87 FT_TRACE_DEF( cffload )
88 FT_TRACE_DEF( cffobjs )
89 FT_TRACE_DEF( cffparse )
90 
91 FT_TRACE_DEF( cf2blues )
92 FT_TRACE_DEF( cf2hints )
93 FT_TRACE_DEF( cf2interp )
94 
95   /* Type 42 driver component */
96 FT_TRACE_DEF( t42 )
97 
98   /* CID driver components */
99 FT_TRACE_DEF( ciddriver )
100 FT_TRACE_DEF( cidgload )
101 FT_TRACE_DEF( cidload )
102 FT_TRACE_DEF( cidobjs )
103 FT_TRACE_DEF( cidparse )
104 
105   /* Windows font component */
106 FT_TRACE_DEF( winfnt )
107 
108   /* PCF font components */
109 FT_TRACE_DEF( pcfdriver )
110 FT_TRACE_DEF( pcfread )
111 
112   /* BDF font components */
113 FT_TRACE_DEF( bdfdriver )
114 FT_TRACE_DEF( bdflib )
115 
116   /* PFR font component */
117 FT_TRACE_DEF( pfr )
118 
119   /* OpenType validation components */
120 FT_TRACE_DEF( otvmodule )
121 FT_TRACE_DEF( otvcommon )
122 FT_TRACE_DEF( otvbase )
123 FT_TRACE_DEF( otvgdef )
124 FT_TRACE_DEF( otvgpos )
125 FT_TRACE_DEF( otvgsub )
126 FT_TRACE_DEF( otvjstf )
127 FT_TRACE_DEF( otvmath )
128 
129   /* TrueTypeGX/AAT validation components */
130 FT_TRACE_DEF( gxvmodule )
131 FT_TRACE_DEF( gxvcommon )
132 FT_TRACE_DEF( gxvfeat )
133 FT_TRACE_DEF( gxvmort )
134 FT_TRACE_DEF( gxvmorx )
135 FT_TRACE_DEF( gxvbsln )
136 FT_TRACE_DEF( gxvjust )
137 FT_TRACE_DEF( gxvkern )
138 FT_TRACE_DEF( gxvopbd )
139 FT_TRACE_DEF( gxvtrak )
140 FT_TRACE_DEF( gxvprop )
141 FT_TRACE_DEF( gxvlcar )
142 
143   /* autofit components */
144 FT_TRACE_DEF( afmodule )
145 FT_TRACE_DEF( afhints )
146 FT_TRACE_DEF( afcjk )
147 FT_TRACE_DEF( aflatin )
148 FT_TRACE_DEF( aflatin2 )
149 FT_TRACE_DEF( afwarp )
150 FT_TRACE_DEF( afshaper )
151 FT_TRACE_DEF( afglobal )
152 
153 /* END */
154