vrshoot

diff libs/ft2static/freetype/internal/fttrace.h @ 0:b2f14e535253

initial commit
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 01 Feb 2014 19:58:19 +0200
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/libs/ft2static/freetype/internal/fttrace.h	Sat Feb 01 19:58:19 2014 +0200
     1.3 @@ -0,0 +1,139 @@
     1.4 +/***************************************************************************/
     1.5 +/*                                                                         */
     1.6 +/*  fttrace.h                                                              */
     1.7 +/*                                                                         */
     1.8 +/*    Tracing handling (specification only).                               */
     1.9 +/*                                                                         */
    1.10 +/*  Copyright 2002, 2004, 2005, 2006, 2007 by                              */
    1.11 +/*  David Turner, Robert Wilhelm, and Werner Lemberg.                      */
    1.12 +/*                                                                         */
    1.13 +/*  This file is part of the FreeType project, and may only be used,       */
    1.14 +/*  modified, and distributed under the terms of the FreeType project      */
    1.15 +/*  license, LICENSE.TXT.  By continuing to use, modify, or distribute     */
    1.16 +/*  this file you indicate that you have read the license and              */
    1.17 +/*  understand and accept it fully.                                        */
    1.18 +/*                                                                         */
    1.19 +/***************************************************************************/
    1.20 +
    1.21 +
    1.22 +  /* definitions of trace levels for FreeType 2 */
    1.23 +
    1.24 +  /* the first level must always be `trace_any' */
    1.25 +FT_TRACE_DEF( any )
    1.26 +
    1.27 +  /* base components */
    1.28 +FT_TRACE_DEF( calc )      /* calculations            (ftcalc.c)   */
    1.29 +FT_TRACE_DEF( memory )    /* memory manager          (ftobjs.c)   */
    1.30 +FT_TRACE_DEF( stream )    /* stream manager          (ftstream.c) */
    1.31 +FT_TRACE_DEF( io )        /* i/o interface           (ftsystem.c) */
    1.32 +FT_TRACE_DEF( list )      /* list management         (ftlist.c)   */
    1.33 +FT_TRACE_DEF( init )      /* initialization          (ftinit.c)   */
    1.34 +FT_TRACE_DEF( objs )      /* base objects            (ftobjs.c)   */
    1.35 +FT_TRACE_DEF( outline )   /* outline management      (ftoutln.c)  */
    1.36 +FT_TRACE_DEF( glyph )     /* glyph management        (ftglyph.c)  */
    1.37 +FT_TRACE_DEF( gloader )   /* glyph loader            (ftgloadr.c) */
    1.38 +
    1.39 +FT_TRACE_DEF( raster )    /* monochrome rasterizer   (ftraster.c) */
    1.40 +FT_TRACE_DEF( smooth )    /* anti-aliasing raster    (ftgrays.c)  */
    1.41 +FT_TRACE_DEF( mm )        /* MM interface            (ftmm.c)     */
    1.42 +FT_TRACE_DEF( raccess )   /* resource fork accessor  (ftrfork.c)  */
    1.43 +FT_TRACE_DEF( synth )     /* bold/slant synthesizer  (ftsynth.c)  */
    1.44 +
    1.45 +  /* Cache sub-system */
    1.46 +FT_TRACE_DEF( cache )     /* cache sub-system        (ftcache.c, etc.) */
    1.47 +
    1.48 +  /* SFNT driver components */
    1.49 +FT_TRACE_DEF( sfdriver )  /* SFNT font driver        (sfdriver.c) */
    1.50 +FT_TRACE_DEF( sfobjs )    /* SFNT object handler     (sfobjs.c)   */
    1.51 +FT_TRACE_DEF( ttcmap )    /* charmap handler         (ttcmap.c)   */
    1.52 +FT_TRACE_DEF( ttkern )    /* kerning handler         (ttkern.c)   */
    1.53 +FT_TRACE_DEF( ttload )    /* basic TrueType tables   (ttload.c)   */
    1.54 +FT_TRACE_DEF( ttmtx )     /* metrics-related tables  (ttmtx.c)    */
    1.55 +FT_TRACE_DEF( ttpost )    /* PS table processing     (ttpost.c)   */
    1.56 +FT_TRACE_DEF( ttsbit )    /* TrueType sbit handling  (ttsbit.c)   */
    1.57 +FT_TRACE_DEF( ttbdf )     /* TrueType embedded BDF   (ttbdf.c)    */
    1.58 +
    1.59 +  /* TrueType driver components */
    1.60 +FT_TRACE_DEF( ttdriver )  /* TT font driver          (ttdriver.c) */
    1.61 +FT_TRACE_DEF( ttgload )   /* TT glyph loader         (ttgload.c)  */
    1.62 +FT_TRACE_DEF( ttinterp )  /* bytecode interpreter    (ttinterp.c) */
    1.63 +FT_TRACE_DEF( ttobjs )    /* TT objects manager      (ttobjs.c)   */
    1.64 +FT_TRACE_DEF( ttpload )   /* TT data/program loader  (ttpload.c)  */
    1.65 +FT_TRACE_DEF( ttgxvar )   /* TrueType GX var handler (ttgxvar.c)  */
    1.66 +
    1.67 +  /* Type 1 driver components */
    1.68 +FT_TRACE_DEF( t1afm )
    1.69 +FT_TRACE_DEF( t1driver )
    1.70 +FT_TRACE_DEF( t1gload )
    1.71 +FT_TRACE_DEF( t1hint )
    1.72 +FT_TRACE_DEF( t1load )
    1.73 +FT_TRACE_DEF( t1objs )
    1.74 +FT_TRACE_DEF( t1parse )
    1.75 +
    1.76 +  /* PostScript helper module `psaux' */
    1.77 +FT_TRACE_DEF( t1decode )
    1.78 +FT_TRACE_DEF( psobjs )
    1.79 +
    1.80 +  /* PostScript hinting module `pshinter' */
    1.81 +FT_TRACE_DEF( pshrec )
    1.82 +FT_TRACE_DEF( pshalgo1 )
    1.83 +FT_TRACE_DEF( pshalgo2 )
    1.84 +
    1.85 +  /* Type 2 driver components */
    1.86 +FT_TRACE_DEF( cffdriver )
    1.87 +FT_TRACE_DEF( cffgload )
    1.88 +FT_TRACE_DEF( cffload )
    1.89 +FT_TRACE_DEF( cffobjs )
    1.90 +FT_TRACE_DEF( cffparse )
    1.91 +
    1.92 +  /* Type 42 driver component */
    1.93 +FT_TRACE_DEF( t42 )
    1.94 +
    1.95 +  /* CID driver components */
    1.96 +FT_TRACE_DEF( cidafm )
    1.97 +FT_TRACE_DEF( ciddriver )
    1.98 +FT_TRACE_DEF( cidgload )
    1.99 +FT_TRACE_DEF( cidload )
   1.100 +FT_TRACE_DEF( cidobjs )
   1.101 +FT_TRACE_DEF( cidparse )
   1.102 +
   1.103 +  /* Windows font component */
   1.104 +FT_TRACE_DEF( winfnt )
   1.105 +
   1.106 +  /* PCF font components */
   1.107 +FT_TRACE_DEF( pcfdriver )
   1.108 +FT_TRACE_DEF( pcfread )
   1.109 +
   1.110 +  /* BDF font components */
   1.111 +FT_TRACE_DEF( bdfdriver )
   1.112 +FT_TRACE_DEF( bdflib )
   1.113 +
   1.114 +  /* PFR font component */
   1.115 +FT_TRACE_DEF( pfr )
   1.116 +
   1.117 +  /* OpenType validation components */
   1.118 +FT_TRACE_DEF( otvmodule )
   1.119 +FT_TRACE_DEF( otvcommon )
   1.120 +FT_TRACE_DEF( otvbase )
   1.121 +FT_TRACE_DEF( otvgdef )
   1.122 +FT_TRACE_DEF( otvgpos )
   1.123 +FT_TRACE_DEF( otvgsub )
   1.124 +FT_TRACE_DEF( otvjstf )
   1.125 +FT_TRACE_DEF( otvmath )
   1.126 +
   1.127 +  /* TrueTypeGX/AAT validation components */
   1.128 +FT_TRACE_DEF( gxvmodule )
   1.129 +FT_TRACE_DEF( gxvcommon )
   1.130 +FT_TRACE_DEF( gxvfeat )
   1.131 +FT_TRACE_DEF( gxvmort )
   1.132 +FT_TRACE_DEF( gxvmorx )
   1.133 +FT_TRACE_DEF( gxvbsln )
   1.134 +FT_TRACE_DEF( gxvjust )
   1.135 +FT_TRACE_DEF( gxvkern )
   1.136 +FT_TRACE_DEF( gxvopbd )
   1.137 +FT_TRACE_DEF( gxvtrak )
   1.138 +FT_TRACE_DEF( gxvprop )
   1.139 +FT_TRACE_DEF( gxvlcar )
   1.140 +
   1.141 +
   1.142 +/* END */