misc/libfreetype/include/freetype/internal/fttrace.h
author koda
Mon, 25 Apr 2011 01:46:54 +0200
changeset 5172 88f2e05288ba
permissions -rw-r--r--
aaand let's add freetype as well while we are at it other smaller changes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5172
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     1
/***************************************************************************/
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     2
/*                                                                         */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     3
/*  fttrace.h                                                              */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     4
/*                                                                         */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     5
/*    Tracing handling (specification only).                               */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     6
/*                                                                         */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     7
/*  Copyright 2002, 2004-2007, 2009, 2011 by                               */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     8
/*  David Turner, Robert Wilhelm, and Werner Lemberg.                      */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
     9
/*                                                                         */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    10
/*  This file is part of the FreeType project, and may only be used,       */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    11
/*  modified, and distributed under the terms of the FreeType project      */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    12
/*  license, LICENSE.TXT.  By continuing to use, modify, or distribute     */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    13
/*  this file you indicate that you have read the license and              */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    14
/*  understand and accept it fully.                                        */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    15
/*                                                                         */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    16
/***************************************************************************/
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    17
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    18
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    19
  /* definitions of trace levels for FreeType 2 */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    20
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    21
  /* the first level must always be `trace_any' */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    22
FT_TRACE_DEF( any )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    23
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    24
  /* base components */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    25
FT_TRACE_DEF( calc )      /* calculations            (ftcalc.c)   */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    26
FT_TRACE_DEF( memory )    /* memory manager          (ftobjs.c)   */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    27
FT_TRACE_DEF( stream )    /* stream manager          (ftstream.c) */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    28
FT_TRACE_DEF( io )        /* i/o interface           (ftsystem.c) */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    29
FT_TRACE_DEF( list )      /* list management         (ftlist.c)   */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    30
FT_TRACE_DEF( init )      /* initialization          (ftinit.c)   */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    31
FT_TRACE_DEF( objs )      /* base objects            (ftobjs.c)   */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    32
FT_TRACE_DEF( outline )   /* outline management      (ftoutln.c)  */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    33
FT_TRACE_DEF( glyph )     /* glyph management        (ftglyph.c)  */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    34
FT_TRACE_DEF( gloader )   /* glyph loader            (ftgloadr.c) */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    35
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    36
FT_TRACE_DEF( raster )    /* monochrome rasterizer   (ftraster.c) */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    37
FT_TRACE_DEF( smooth )    /* anti-aliasing raster    (ftgrays.c)  */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    38
FT_TRACE_DEF( mm )        /* MM interface            (ftmm.c)     */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    39
FT_TRACE_DEF( raccess )   /* resource fork accessor  (ftrfork.c)  */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    40
FT_TRACE_DEF( synth )     /* bold/slant synthesizer  (ftsynth.c)  */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    41
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    42
  /* Cache sub-system */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    43
FT_TRACE_DEF( cache )     /* cache sub-system        (ftcache.c, etc.) */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    44
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    45
  /* SFNT driver components */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    46
FT_TRACE_DEF( sfdriver )  /* SFNT font driver        (sfdriver.c) */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    47
FT_TRACE_DEF( sfobjs )    /* SFNT object handler     (sfobjs.c)   */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    48
FT_TRACE_DEF( ttcmap )    /* charmap handler         (ttcmap.c)   */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    49
FT_TRACE_DEF( ttkern )    /* kerning handler         (ttkern.c)   */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    50
FT_TRACE_DEF( ttload )    /* basic TrueType tables   (ttload.c)   */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    51
FT_TRACE_DEF( ttmtx )     /* metrics-related tables  (ttmtx.c)    */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    52
FT_TRACE_DEF( ttpost )    /* PS table processing     (ttpost.c)   */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    53
FT_TRACE_DEF( ttsbit )    /* TrueType sbit handling  (ttsbit.c)   */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    54
FT_TRACE_DEF( ttbdf )     /* TrueType embedded BDF   (ttbdf.c)    */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    55
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    56
  /* TrueType driver components */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    57
FT_TRACE_DEF( ttdriver )  /* TT font driver          (ttdriver.c) */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    58
FT_TRACE_DEF( ttgload )   /* TT glyph loader         (ttgload.c)  */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    59
FT_TRACE_DEF( ttinterp )  /* bytecode interpreter    (ttinterp.c) */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    60
FT_TRACE_DEF( ttobjs )    /* TT objects manager      (ttobjs.c)   */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    61
FT_TRACE_DEF( ttpload )   /* TT data/program loader  (ttpload.c)  */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    62
FT_TRACE_DEF( ttgxvar )   /* TrueType GX var handler (ttgxvar.c)  */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    63
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    64
  /* Type 1 driver components */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    65
FT_TRACE_DEF( t1afm )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    66
FT_TRACE_DEF( t1driver )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    67
FT_TRACE_DEF( t1gload )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    68
FT_TRACE_DEF( t1hint )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    69
FT_TRACE_DEF( t1load )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    70
FT_TRACE_DEF( t1objs )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    71
FT_TRACE_DEF( t1parse )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    72
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    73
  /* PostScript helper module `psaux' */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    74
FT_TRACE_DEF( t1decode )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    75
FT_TRACE_DEF( psobjs )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    76
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    77
  /* PostScript hinting module `pshinter' */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    78
FT_TRACE_DEF( pshrec )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    79
FT_TRACE_DEF( pshalgo1 )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    80
FT_TRACE_DEF( pshalgo2 )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    81
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    82
  /* Type 2 driver components */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    83
FT_TRACE_DEF( cffdriver )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    84
FT_TRACE_DEF( cffgload )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    85
FT_TRACE_DEF( cffload )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    86
FT_TRACE_DEF( cffobjs )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    87
FT_TRACE_DEF( cffparse )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    88
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    89
  /* Type 42 driver component */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    90
FT_TRACE_DEF( t42 )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    91
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    92
  /* CID driver components */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    93
FT_TRACE_DEF( cidafm )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    94
FT_TRACE_DEF( ciddriver )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    95
FT_TRACE_DEF( cidgload )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    96
FT_TRACE_DEF( cidload )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    97
FT_TRACE_DEF( cidobjs )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    98
FT_TRACE_DEF( cidparse )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
    99
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   100
  /* Windows font component */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   101
FT_TRACE_DEF( winfnt )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   102
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   103
  /* PCF font components */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   104
FT_TRACE_DEF( pcfdriver )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   105
FT_TRACE_DEF( pcfread )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   106
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   107
  /* BDF font components */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   108
FT_TRACE_DEF( bdfdriver )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   109
FT_TRACE_DEF( bdflib )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   110
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   111
  /* PFR font component */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   112
FT_TRACE_DEF( pfr )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   113
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   114
  /* OpenType validation components */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   115
FT_TRACE_DEF( otvmodule )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   116
FT_TRACE_DEF( otvcommon )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   117
FT_TRACE_DEF( otvbase )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   118
FT_TRACE_DEF( otvgdef )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   119
FT_TRACE_DEF( otvgpos )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   120
FT_TRACE_DEF( otvgsub )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   121
FT_TRACE_DEF( otvjstf )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   122
FT_TRACE_DEF( otvmath )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   123
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   124
  /* TrueTypeGX/AAT validation components */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   125
FT_TRACE_DEF( gxvmodule )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   126
FT_TRACE_DEF( gxvcommon )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   127
FT_TRACE_DEF( gxvfeat )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   128
FT_TRACE_DEF( gxvmort )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   129
FT_TRACE_DEF( gxvmorx )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   130
FT_TRACE_DEF( gxvbsln )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   131
FT_TRACE_DEF( gxvjust )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   132
FT_TRACE_DEF( gxvkern )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   133
FT_TRACE_DEF( gxvopbd )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   134
FT_TRACE_DEF( gxvtrak )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   135
FT_TRACE_DEF( gxvprop )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   136
FT_TRACE_DEF( gxvlcar )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   137
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   138
  /* autofit components */
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   139
FT_TRACE_DEF( aflatin )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   140
FT_TRACE_DEF( aflatin2 )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   141
FT_TRACE_DEF( afwarp )
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   142
88f2e05288ba aaand let's add freetype as well while we are at it
koda
parents:
diff changeset
   143
/* END */