source: OGRE/trunk/ogrenew/Dependencies/include/freetype/internal/fttrace.h @ 657

Revision 657, 4.9 KB checked in by mattausch, 18 years ago (diff)

added ogre dependencies and patched ogre sources

Line 
1/***************************************************************************/
2/*                                                                         */
3/*  fttrace.h                                                              */
4/*                                                                         */
5/*    Tracing handling (specification only).                               */
6/*                                                                         */
7/*  Copyright 2002, 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  /* definitions of trace levels for FreeType 2 */
20
21  /* the first level must always be `trace_any' */
22FT_TRACE_DEF( any )
23
24  /* base components */
25FT_TRACE_DEF( calc )      /* calculations            (ftcalc.c)   */
26FT_TRACE_DEF( memory )    /* memory manager          (ftobjs.c)   */
27FT_TRACE_DEF( stream )    /* stream manager          (ftstream.c) */
28FT_TRACE_DEF( io )        /* i/o interface           (ftsystem.c) */
29FT_TRACE_DEF( list )      /* list management         (ftlist.c)   */
30FT_TRACE_DEF( init )      /* initialization          (ftinit.c)   */
31FT_TRACE_DEF( objs )      /* base objects            (ftobjs.c)   */
32FT_TRACE_DEF( outline )   /* outline management      (ftoutln.c)  */
33FT_TRACE_DEF( glyph )     /* glyph management        (ftglyph.c)  */
34
35FT_TRACE_DEF( raster )    /* monochrome rasterizer   (ftraster.c) */
36FT_TRACE_DEF( smooth )    /* anti-aliasing raster    (ftgrays.c)  */
37FT_TRACE_DEF( mm )        /* MM interface            (ftmm.c)     */
38FT_TRACE_DEF( raccess )   /* resource fork accessor  (ftrfork.c)  */
39
40  /* Cache sub-system */
41FT_TRACE_DEF( cache )     /* cache sub-system        (ftcache.c, etc.) */
42
43  /* SFNT driver components */
44FT_TRACE_DEF( sfobjs )    /* SFNT object handler     (sfobjs.c)   */
45FT_TRACE_DEF( ttcmap )    /* charmap handler         (ttcmap.c)   */
46FT_TRACE_DEF( ttkern )    /* kerning handler         (ttkern.c)   */
47FT_TRACE_DEF( ttload )    /* basic TrueType tables   (ttload.c)   */
48FT_TRACE_DEF( ttpost )    /* PS table processing     (ttpost.c)   */
49FT_TRACE_DEF( ttsbit )    /* TrueType sbit handling  (ttsbit.c)   */
50
51  /* TrueType driver components */
52FT_TRACE_DEF( ttdriver )  /* TT font driver          (ttdriver.c) */
53FT_TRACE_DEF( ttgload )   /* TT glyph loader         (ttgload.c)  */
54FT_TRACE_DEF( ttinterp )  /* bytecode interpreter    (ttinterp.c) */
55FT_TRACE_DEF( ttobjs )    /* TT objects manager      (ttobjs.c)   */
56FT_TRACE_DEF( ttpload )   /* TT data/program loader  (ttpload.c)  */
57FT_TRACE_DEF( ttgxvar )   /* TrueType GX var handler (ttgxvar.c)  */
58
59  /* Type 1 driver components */
60FT_TRACE_DEF( t1driver )
61FT_TRACE_DEF( t1gload )
62FT_TRACE_DEF( t1hint )
63FT_TRACE_DEF( t1load )
64FT_TRACE_DEF( t1objs )
65FT_TRACE_DEF( t1parse )
66
67  /* PostScript helper module `psaux' */
68FT_TRACE_DEF( t1decode )
69FT_TRACE_DEF( psobjs )
70
71  /* PostScript hinting module `pshinter' */
72FT_TRACE_DEF( pshrec )
73FT_TRACE_DEF( pshalgo1 )
74FT_TRACE_DEF( pshalgo2 )
75
76  /* Type 2 driver components */
77FT_TRACE_DEF( cffdriver )
78FT_TRACE_DEF( cffgload )
79FT_TRACE_DEF( cffload )
80FT_TRACE_DEF( cffobjs )
81FT_TRACE_DEF( cffparse )
82
83  /* Type 42 driver component */
84FT_TRACE_DEF( t42 )
85
86  /* CID driver components */
87FT_TRACE_DEF( cidafm )
88FT_TRACE_DEF( ciddriver )
89FT_TRACE_DEF( cidgload )
90FT_TRACE_DEF( cidload )
91FT_TRACE_DEF( cidobjs )
92FT_TRACE_DEF( cidparse )
93
94  /* Windows font component */
95FT_TRACE_DEF( winfnt )
96
97  /* PCF font components */
98FT_TRACE_DEF( pcfdriver )
99FT_TRACE_DEF( pcfread )
100
101  /* BDF font components */
102FT_TRACE_DEF( bdfdriver )
103FT_TRACE_DEF( bdflib )
104
105  /* PFR font component */
106FT_TRACE_DEF( pfr )
107
108  /* OpenType validation components */
109FT_TRACE_DEF( otvmodule )
110FT_TRACE_DEF( otvcommon )
111FT_TRACE_DEF( otvbase )
112FT_TRACE_DEF( otvgdef )
113FT_TRACE_DEF( otvgpos )
114FT_TRACE_DEF( otvgsub )
115FT_TRACE_DEF( otvjstf )
116
117  /* TrueTypeGX/AAT validation components */
118FT_TRACE_DEF( gxvmodule )
119FT_TRACE_DEF( gxvcommon )
120FT_TRACE_DEF( gxvfeat )
121FT_TRACE_DEF( gxvmort )
122FT_TRACE_DEF( gxvmorx )
123FT_TRACE_DEF( gxvbsln )
124FT_TRACE_DEF( gxvjust )
125FT_TRACE_DEF( gxvkern )
126FT_TRACE_DEF( gxvopbd )
127FT_TRACE_DEF( gxvtrak )
128FT_TRACE_DEF( gxvprop )
129FT_TRACE_DEF( gxvlcar )
130
131
132/* END */
Note: See TracBrowser for help on using the repository browser.