~ubuntu-branches/ubuntu/vivid/emscripten/vivid

« back to all changes in this revision

Viewing changes to tests/freetype/include/freetype/internal/fttrace.h

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2013-05-02 13:11:51 UTC
  • Revision ID: package-import@ubuntu.com-20130502131151-q8dvteqr1ef2x7xz
Tags: upstream-1.4.1~20130504~adb56cb
ImportĀ upstreamĀ versionĀ 1.4.1~20130504~adb56cb

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************/
 
2
/*                                                                         */
 
3
/*  fttrace.h                                                              */
 
4
/*                                                                         */
 
5
/*    Tracing handling (specification only).                               */
 
6
/*                                                                         */
 
7
/*  Copyright 2002, 2004, 2005, 2006, 2007 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
 
 
42
  /* Cache sub-system */
 
43
FT_TRACE_DEF( cache )     /* cache sub-system        (ftcache.c, etc.) */
 
44
 
 
45
  /* SFNT driver components */
 
46
FT_TRACE_DEF( sfdriver )  /* SFNT font driver        (sfdriver.c) */
 
47
FT_TRACE_DEF( sfobjs )    /* SFNT object handler     (sfobjs.c)   */
 
48
FT_TRACE_DEF( ttcmap )    /* charmap handler         (ttcmap.c)   */
 
49
FT_TRACE_DEF( ttkern )    /* kerning handler         (ttkern.c)   */
 
50
FT_TRACE_DEF( ttload )    /* basic TrueType tables   (ttload.c)   */
 
51
FT_TRACE_DEF( ttmtx )     /* metrics-related tables  (ttmtx.c)    */
 
52
FT_TRACE_DEF( ttpost )    /* PS table processing     (ttpost.c)   */
 
53
FT_TRACE_DEF( ttsbit )    /* TrueType sbit handling  (ttsbit.c)   */
 
54
FT_TRACE_DEF( ttbdf )     /* TrueType embedded BDF   (ttbdf.c)    */
 
55
 
 
56
  /* TrueType driver components */
 
57
FT_TRACE_DEF( ttdriver )  /* TT font driver          (ttdriver.c) */
 
58
FT_TRACE_DEF( ttgload )   /* TT glyph loader         (ttgload.c)  */
 
59
FT_TRACE_DEF( ttinterp )  /* bytecode interpreter    (ttinterp.c) */
 
60
FT_TRACE_DEF( ttobjs )    /* TT objects manager      (ttobjs.c)   */
 
61
FT_TRACE_DEF( ttpload )   /* TT data/program loader  (ttpload.c)  */
 
62
FT_TRACE_DEF( ttgxvar )   /* TrueType GX var handler (ttgxvar.c)  */
 
63
 
 
64
  /* Type 1 driver components */
 
65
FT_TRACE_DEF( t1afm )
 
66
FT_TRACE_DEF( t1driver )
 
67
FT_TRACE_DEF( t1gload )
 
68
FT_TRACE_DEF( t1hint )
 
69
FT_TRACE_DEF( t1load )
 
70
FT_TRACE_DEF( t1objs )
 
71
FT_TRACE_DEF( t1parse )
 
72
 
 
73
  /* PostScript helper module `psaux' */
 
74
FT_TRACE_DEF( t1decode )
 
75
FT_TRACE_DEF( psobjs )
 
76
 
 
77
  /* PostScript hinting module `pshinter' */
 
78
FT_TRACE_DEF( pshrec )
 
79
FT_TRACE_DEF( pshalgo1 )
 
80
FT_TRACE_DEF( pshalgo2 )
 
81
 
 
82
  /* Type 2 driver components */
 
83
FT_TRACE_DEF( cffdriver )
 
84
FT_TRACE_DEF( cffgload )
 
85
FT_TRACE_DEF( cffload )
 
86
FT_TRACE_DEF( cffobjs )
 
87
FT_TRACE_DEF( cffparse )
 
88
 
 
89
  /* Type 42 driver component */
 
90
FT_TRACE_DEF( t42 )
 
91
 
 
92
  /* CID driver components */
 
93
FT_TRACE_DEF( cidafm )
 
94
FT_TRACE_DEF( ciddriver )
 
95
FT_TRACE_DEF( cidgload )
 
96
FT_TRACE_DEF( cidload )
 
97
FT_TRACE_DEF( cidobjs )
 
98
FT_TRACE_DEF( cidparse )
 
99
 
 
100
  /* Windows font component */
 
101
FT_TRACE_DEF( winfnt )
 
102
 
 
103
  /* PCF font components */
 
104
FT_TRACE_DEF( pcfdriver )
 
105
FT_TRACE_DEF( pcfread )
 
106
 
 
107
  /* BDF font components */
 
108
FT_TRACE_DEF( bdfdriver )
 
109
FT_TRACE_DEF( bdflib )
 
110
 
 
111
  /* PFR font component */
 
112
FT_TRACE_DEF( pfr )
 
113
 
 
114
  /* OpenType validation components */
 
115
FT_TRACE_DEF( otvmodule )
 
116
FT_TRACE_DEF( otvcommon )
 
117
FT_TRACE_DEF( otvbase )
 
118
FT_TRACE_DEF( otvgdef )
 
119
FT_TRACE_DEF( otvgpos )
 
120
FT_TRACE_DEF( otvgsub )
 
121
FT_TRACE_DEF( otvjstf )
 
122
FT_TRACE_DEF( otvmath )
 
123
 
 
124
  /* TrueTypeGX/AAT validation components */
 
125
FT_TRACE_DEF( gxvmodule )
 
126
FT_TRACE_DEF( gxvcommon )
 
127
FT_TRACE_DEF( gxvfeat )
 
128
FT_TRACE_DEF( gxvmort )
 
129
FT_TRACE_DEF( gxvmorx )
 
130
FT_TRACE_DEF( gxvbsln )
 
131
FT_TRACE_DEF( gxvjust )
 
132
FT_TRACE_DEF( gxvkern )
 
133
FT_TRACE_DEF( gxvopbd )
 
134
FT_TRACE_DEF( gxvtrak )
 
135
FT_TRACE_DEF( gxvprop )
 
136
FT_TRACE_DEF( gxvlcar )
 
137
 
 
138
 
 
139
/* END */