Don't use `trace_' prefix for FT_COMPONENT arguments.

* include/freetype/internal/ftdebug.h (FT_TRACE_COMP,
FT_TRACE_COMP_): New auxiliary macros to add `trace_' prefix.
(FT_TRACE): Use `FT_TRACE_COMP'.

*/* (FT_COMPONENT): Updated.
This commit is contained in:
Werner Lemberg 2018-08-15 18:13:17 +02:00
parent 1d7b034cd8
commit a0dd16fb3d
115 changed files with 142 additions and 128 deletions

View File

@ -1,3 +1,13 @@
2018-08-15 Werner Lemberg <wl@gnu.org>
Don't use `trace_' prefix for FT_COMPONENT arguments.
* include/freetype/internal/ftdebug.h (FT_TRACE_COMP,
FT_TRACE_COMP_): New auxiliary macros to add `trace_' prefix.
(FT_TRACE): Use `FT_TRACE_COMP'.
*/* (FT_COMPONENT): Updated.
2018-08-14 Werner Lemberg <wl@gnu.org>
Use formatting string in FT_TRACEX calls for non-simple arguments.

View File

@ -84,11 +84,15 @@ FT_BEGIN_HEADER
#ifdef FT_DEBUG_LEVEL_TRACE
#define FT_TRACE( level, varformat ) \
do \
{ \
if ( ft_trace_levels[FT_COMPONENT] >= level ) \
FT_Message varformat; \
/* we need two macros here to make cpp expand `FT_COMPONENT' */
#define FT_TRACE_COMP( x ) FT_TRACE_COMP_( x )
#define FT_TRACE_COMP_( x ) trace_ ## x
#define FT_TRACE( level, varformat ) \
do \
{ \
if ( ft_trace_levels[FT_TRACE_COMP( FT_COMPONENT )] >= level ) \
FT_Message varformat; \
} while ( 0 )
#else /* !FT_DEBUG_LEVEL_TRACE */

View File

@ -50,7 +50,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_afcjk
#define FT_COMPONENT afcjk
/*************************************************************************/

View File

@ -29,7 +29,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_afglobal
#define FT_COMPONENT afglobal
/* get writing system specific header files */

View File

@ -29,7 +29,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_afhints
#define FT_COMPONENT afhints
/* Get new segment for given axis. */

View File

@ -37,7 +37,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_aflatin
#define FT_COMPONENT aflatin
/* needed for computation of round vs. flat segments */

View File

@ -44,7 +44,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_aflatin2
#define FT_COMPONENT aflatin2
FT_LOCAL_DEF( FT_Error )

View File

@ -66,7 +66,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_afmodule
#define FT_COMPONENT afmodule
static FT_Error
@ -507,7 +507,7 @@
glyph_index, load_flags );
#ifdef FT_DEBUG_LEVEL_TRACE
if ( ft_trace_levels[FT_COMPONENT] )
if ( ft_trace_levels[FT_TRACE_COMP( FT_COMPONENT )] )
{
#endif
af_glyph_hints_dump_points( hints, 0 );

View File

@ -33,7 +33,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_afshaper
#define FT_COMPONENT afshaper
/*

View File

@ -34,7 +34,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_afwarp
#define FT_COMPONENT afwarp
/* The weights cover the range 0/64 - 63/64 of a pixel. Obviously, */

View File

@ -31,7 +31,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_bitmap
#define FT_COMPONENT bitmap
static

View File

@ -65,7 +65,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_calc
#define FT_COMPONENT calc
/* transfer sign, leaving a positive number; */

View File

@ -23,7 +23,7 @@
#include FT_INTERNAL_OBJECTS_H
#undef FT_COMPONENT
#define FT_COMPONENT trace_gloader
#define FT_COMPONENT gloader
/*************************************************************************/

View File

@ -44,7 +44,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_glyph
#define FT_COMPONENT glyph
/*************************************************************************/

View File

@ -51,7 +51,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_init
#define FT_COMPONENT init
#undef FT_USE_MODULE

View File

@ -32,7 +32,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_mm
#define FT_COMPONENT mm
static FT_Error

View File

@ -278,7 +278,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_objs
#define FT_COMPONENT objs
/*************************************************************************/
@ -2189,7 +2189,7 @@
{
#undef FT_COMPONENT
#define FT_COMPONENT trace_raccess
#define FT_COMPONENT raccess
FT_Memory memory = library->memory;
FT_Error error = FT_ERR( Unknown_File_Format );
@ -2267,7 +2267,7 @@
return error;
#undef FT_COMPONENT
#define FT_COMPONENT trace_objs
#define FT_COMPONENT objs
}
@ -2295,7 +2295,7 @@
{
#undef FT_COMPONENT
#define FT_COMPONENT trace_raccess
#define FT_COMPONENT raccess
#ifdef FT_DEBUG_LEVEL_TRACE
FT_TRACE3(( "Try as dfont: " ));
@ -2308,7 +2308,7 @@
FT_TRACE3(( "%s\n", error ? "failed" : "successful" ));
#undef FT_COMPONENT
#define FT_COMPONENT trace_objs
#define FT_COMPONENT objs
}
@ -4617,7 +4617,7 @@
#ifdef FT_DEBUG_LEVEL_TRACE
#undef FT_COMPONENT
#define FT_COMPONENT trace_checksum
#define FT_COMPONENT checksum
/*
* Computing the MD5 checksum is expensive, unnecessarily distorting a
@ -4731,7 +4731,7 @@
}
#undef FT_COMPONENT
#define FT_COMPONENT trace_objs
#define FT_COMPONENT objs
#endif /* FT_DEBUG_LEVEL_TRACE */

View File

@ -38,7 +38,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_outline
#define FT_COMPONENT outline
static

View File

@ -32,7 +32,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_psprops
#define FT_COMPONENT psprops
FT_BASE_CALLBACK_DEF( FT_Error )

View File

@ -32,7 +32,7 @@
#include "ftbase.h"
#undef FT_COMPONENT
#define FT_COMPONENT trace_raccess
#define FT_COMPONENT raccess
/*************************************************************************/

View File

@ -28,7 +28,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_stream
#define FT_COMPONENT stream
FT_BASE_DEF( void )

View File

@ -31,7 +31,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_synth
#define FT_COMPONENT synth
/*************************************************************************/

View File

@ -154,7 +154,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_io
#define FT_COMPONENT io
/* We use the macro STREAM_FILE for convenience to extract the */
/* system-specific stream handle from a given FreeType stream object */

View File

@ -30,7 +30,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_memory
#define FT_COMPONENT memory
/*************************************************************************/
@ -236,7 +236,7 @@
/*************************************************************************/
#undef FT_COMPONENT
#define FT_COMPONENT trace_list
#define FT_COMPONENT list
/* documentation is in ftlist.h */

View File

@ -48,7 +48,7 @@ THE SOFTWARE.
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_bdfdriver
#define FT_COMPONENT bdfdriver
typedef struct BDF_CMapRec_

View File

@ -49,7 +49,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_bdflib
#define FT_COMPONENT bdflib
/**************************************************************************

View File

@ -27,7 +27,7 @@
#include "ftccback.h"
#include "ftcerror.h"
#define FT_COMPONENT trace_cache
#define FT_COMPONENT cache
/*

View File

@ -25,7 +25,7 @@
#include "ftcerror.h"
#undef FT_COMPONENT
#define FT_COMPONENT trace_cache
#define FT_COMPONENT cache
#define FTC_HASH_MAX_LOAD 2

2
src/cache/ftccmap.c vendored
View File

@ -28,7 +28,7 @@
#include "ftcerror.h"
#undef FT_COMPONENT
#define FT_COMPONENT trace_cache
#define FT_COMPONENT cache
/**************************************************************************

View File

@ -28,7 +28,7 @@
#undef FT_COMPONENT
#define FT_COMPONENT trace_cache
#define FT_COMPONENT cache
static FT_Error

View File

@ -27,7 +27,7 @@
#include "ftcerror.h"
#undef FT_COMPONENT
#define FT_COMPONENT trace_cache
#define FT_COMPONENT cache
/*************************************************************************/

View File

@ -56,7 +56,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_cffdriver
#define FT_COMPONENT cffdriver
/*************************************************************************/

View File

@ -38,7 +38,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_cffgload
#define FT_COMPONENT cffgload
FT_LOCAL_DEF( FT_Error )

View File

@ -203,7 +203,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_cffload
#define FT_COMPONENT cffload
/* read an offset from the index's stream current position */

View File

@ -51,7 +51,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_cffobjs
#define FT_COMPONENT cffobjs
/**************************************************************************

View File

@ -34,7 +34,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_cffparse
#define FT_COMPONENT cffparse
FT_LOCAL_DEF( FT_Error )
@ -808,7 +808,7 @@
#ifdef FT_DEBUG_LEVEL_TRACE
/* beautify tracing message */
if ( ft_trace_levels[FT_COMPONENT] < 4 )
if ( ft_trace_levels[FT_TRACE_COMP( FT_COMPONENT )] < 4 )
FT_TRACE1(( "Multiple Master CFFs not supported yet,"
" handling first master design only\n" ));
else

View File

@ -38,7 +38,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_cidgload
#define FT_COMPONENT cidgload
FT_CALLBACK_DEF( FT_Error )

View File

@ -35,7 +35,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_cidload
#define FT_COMPONENT cidload
/* read a single offset */

View File

@ -38,7 +38,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_cidobjs
#define FT_COMPONENT cidobjs
/**************************************************************************

View File

@ -33,7 +33,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_cidparse
#define FT_COMPONENT cidparse
/*************************************************************************/

View File

@ -41,7 +41,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_ciddriver
#define FT_COMPONENT ciddriver
/*

View File

@ -36,7 +36,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_gxvbsln
#define FT_COMPONENT gxvbsln
/*************************************************************************/

View File

@ -35,7 +35,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_gxvcommon
#define FT_COMPONENT gxvcommon
/*************************************************************************/

View File

@ -37,7 +37,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_gxvfeat
#define FT_COMPONENT gxvfeat
/*************************************************************************/

View File

@ -38,7 +38,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_gxvjust
#define FT_COMPONENT gxvjust
/*
* referred `just' table format specification:

View File

@ -39,7 +39,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_gxvkern
#define FT_COMPONENT gxvkern
/*************************************************************************/

View File

@ -36,7 +36,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_gxvlcar
#define FT_COMPONENT gxvlcar
/*************************************************************************/

View File

@ -44,7 +44,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_gxvmodule
#define FT_COMPONENT gxvmodule
static FT_Error

View File

@ -36,7 +36,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_gxvmort
#define FT_COMPONENT gxvmort
static void

View File

@ -36,7 +36,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_gxvmort
#define FT_COMPONENT gxvmort
static const char* GXV_Mort_IndicScript_Msg[] =

View File

@ -36,7 +36,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_gxvmort
#define FT_COMPONENT gxvmort
typedef struct GXV_mort_subtable_type1_StateOptRec_

View File

@ -36,7 +36,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_gxvmort
#define FT_COMPONENT gxvmort
typedef struct GXV_mort_subtable_type2_StateOptRec_

View File

@ -36,7 +36,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_gxvmort
#define FT_COMPONENT gxvmort
static void

View File

@ -36,7 +36,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_gxvmort
#define FT_COMPONENT gxvmort
/*

View File

@ -35,7 +35,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_gxvmorx
#define FT_COMPONENT gxvmorx
static void

View File

@ -36,7 +36,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_gxvmorx
#define FT_COMPONENT gxvmorx
static void

View File

@ -36,7 +36,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_gxvmorx
#define FT_COMPONENT gxvmorx
typedef struct GXV_morx_subtable_type1_StateOptRec_

View File

@ -36,7 +36,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_gxvmorx
#define FT_COMPONENT gxvmorx
typedef struct GXV_morx_subtable_type2_StateOptRec_

View File

@ -36,7 +36,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_gxvmorx
#define FT_COMPONENT gxvmorx
FT_LOCAL_DEF( void )

View File

@ -36,7 +36,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_gxvmorx
#define FT_COMPONENT gxvmorx
/*

View File

@ -36,7 +36,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_gxvopbd
#define FT_COMPONENT gxvopbd
/*************************************************************************/

View File

@ -36,7 +36,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_gxvprop
#define FT_COMPONENT gxvprop
/*************************************************************************/

View File

@ -36,7 +36,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_gxvtrak
#define FT_COMPONENT gxvtrak
/*************************************************************************/

View File

@ -27,7 +27,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_otvbase
#define FT_COMPONENT otvbase
static void

View File

@ -26,7 +26,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_otvcommon
#define FT_COMPONENT otvcommon
/*************************************************************************/

View File

@ -27,7 +27,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_otvgdef
#define FT_COMPONENT otvgdef
/*************************************************************************/

View File

@ -28,7 +28,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_otvgpos
#define FT_COMPONENT otvgpos
static void

View File

@ -27,7 +27,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_otvgsub
#define FT_COMPONENT otvgsub
/*************************************************************************/

View File

@ -28,7 +28,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_otvjstf
#define FT_COMPONENT otvjstf
#define JstfPriorityFunc otv_JstfPriority_validate

View File

@ -30,7 +30,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_otvmath
#define FT_COMPONENT otvmath

View File

@ -35,7 +35,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_otvmodule
#define FT_COMPONENT otvmodule
static FT_Error

View File

@ -45,7 +45,7 @@ THE SOFTWARE.
#include "pcfutil.h"
#undef FT_COMPONENT
#define FT_COMPONENT trace_pcfread
#define FT_COMPONENT pcfread
#include FT_SERVICE_BDF_H
#include FT_SERVICE_FONT_FORMAT_H
@ -60,7 +60,7 @@ THE SOFTWARE.
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_pcfdriver
#define FT_COMPONENT pcfdriver
/*

View File

@ -44,7 +44,7 @@ THE SOFTWARE.
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_pcfread
#define FT_COMPONENT pcfread
#ifdef FT_DEBUG_LEVEL_TRACE

View File

@ -24,7 +24,7 @@
#include "pfrerror.h"
#undef FT_COMPONENT
#define FT_COMPONENT trace_pfr
#define FT_COMPONENT pfr
/*************************************************************************/

View File

@ -23,7 +23,7 @@
#include "pfrerror.h"
#undef FT_COMPONENT
#define FT_COMPONENT trace_pfr
#define FT_COMPONENT pfr
/*

View File

@ -29,7 +29,7 @@
#include "pfrerror.h"
#undef FT_COMPONENT
#define FT_COMPONENT trace_pfr
#define FT_COMPONENT pfr
/*************************************************************************/

View File

@ -24,7 +24,7 @@
#include "pfrerror.h"
#undef FT_COMPONENT
#define FT_COMPONENT trace_pfr
#define FT_COMPONENT pfr
/*************************************************************************/

View File

@ -35,7 +35,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_cffdecode
#define FT_COMPONENT cffdecode
#ifdef CFF_CONFIG_OPTION_OLD_ENGINE

View File

@ -51,7 +51,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_cf2blues
#define FT_COMPONENT cf2blues
/*

View File

@ -31,7 +31,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_psconv
#define FT_COMPONENT psconv
/* The following array is used by various functions to quickly convert */

View File

@ -52,7 +52,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_cf2hints
#define FT_COMPONENT cf2hints
typedef struct CF2_HintMoveRec_

View File

@ -59,7 +59,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_cf2interp
#define FT_COMPONENT cf2interp
FT_LOCAL_DEF( void )

View File

@ -36,7 +36,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_psobjs
#define FT_COMPONENT psobjs
/*************************************************************************/

View File

@ -38,7 +38,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_t1decode
#define FT_COMPONENT t1decode
typedef enum T1_Operator_

View File

@ -26,7 +26,7 @@
#undef FT_COMPONENT
#define FT_COMPONENT trace_pshalgo
#define FT_COMPONENT pshalgo
#ifdef DEBUG_HINTER

View File

@ -28,7 +28,7 @@
#include "pshnterr.h"
#undef FT_COMPONENT
#define FT_COMPONENT trace_pshrec
#define FT_COMPONENT pshrec
#ifdef DEBUG_HINTER
PS_Hints ps_debug_hints = NULL;

View File

@ -169,7 +169,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_raster
#define FT_COMPONENT raster
#ifdef STANDALONE_

View File

@ -68,7 +68,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_sfdriver
#define FT_COMPONENT sfdriver
/*

View File

@ -48,7 +48,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_sfobjs
#define FT_COMPONENT sfobjs

View File

@ -34,7 +34,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_ttbdf
#define FT_COMPONENT ttbdf
FT_LOCAL_DEF( void )

View File

@ -36,7 +36,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_ttcmap
#define FT_COMPONENT ttcmap
#define TT_PEEK_SHORT FT_PEEK_SHORT

View File

@ -77,7 +77,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_ttcolr
#define FT_COMPONENT ttcolr
FT_LOCAL_DEF( FT_Error )

View File

@ -68,7 +68,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_ttcpal
#define FT_COMPONENT ttcpal
FT_LOCAL_DEF( FT_Error )

View File

@ -33,7 +33,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_ttkern
#define FT_COMPONENT ttkern
#undef TT_KERN_INDEX

View File

@ -33,7 +33,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_ttload
#define FT_COMPONENT ttload
/**************************************************************************

View File

@ -45,7 +45,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_ttmtx
#define FT_COMPONENT ttmtx
/**************************************************************************

View File

@ -45,7 +45,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_ttpost
#define FT_COMPONENT ttpost
/* If this configuration macro is defined, we rely on the `PSNames' */

View File

@ -43,7 +43,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_ttsbit
#define FT_COMPONENT ttsbit
FT_LOCAL_DEF( FT_Error )

View File

@ -88,7 +88,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_smooth
#define FT_COMPONENT smooth
#ifdef STANDALONE_

View File

@ -51,7 +51,7 @@
* messages during execution.
*/
#undef FT_COMPONENT
#define FT_COMPONENT trace_ttdriver
#define FT_COMPONENT ttdriver
/*

Some files were not shown because too many files have changed in this diff Show More