fttrace.h
上传用户:yisoukefu
上传日期:2020-08-09
资源大小:39506k
文件大小:5k
源码类别:

其他游戏

开发平台:

Visual C++

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