Whitespace.
This commit is contained in:
parent
94926686b1
commit
ed6a9df0f6
|
@ -42,7 +42,7 @@
|
||||||
} TBBox_Rec;
|
} TBBox_Rec;
|
||||||
|
|
||||||
|
|
||||||
#define FT_UPDATE_BBOX(p, bbox) \
|
#define FT_UPDATE_BBOX( p, bbox ) \
|
||||||
FT_BEGIN_STMNT \
|
FT_BEGIN_STMNT \
|
||||||
if ( p->x < bbox.xMin ) \
|
if ( p->x < bbox.xMin ) \
|
||||||
bbox.xMin = p->x; \
|
bbox.xMin = p->x; \
|
||||||
|
@ -419,7 +419,8 @@
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
FT_DEFINE_OUTLINE_FUNCS(bbox_interface,
|
|
||||||
|
FT_DEFINE_OUTLINE_FUNCS(bbox_interface,
|
||||||
(FT_Outline_MoveTo_Func) BBox_Move_To,
|
(FT_Outline_MoveTo_Func) BBox_Move_To,
|
||||||
(FT_Outline_LineTo_Func) BBox_Line_To,
|
(FT_Outline_LineTo_Func) BBox_Line_To,
|
||||||
(FT_Outline_ConicTo_Func)BBox_Conic_To,
|
(FT_Outline_ConicTo_Func)BBox_Conic_To,
|
||||||
|
@ -427,6 +428,7 @@ FT_DEFINE_OUTLINE_FUNCS(bbox_interface,
|
||||||
0, 0
|
0, 0
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
/* documentation is in ftbbox.h */
|
/* documentation is in ftbbox.h */
|
||||||
|
|
||||||
FT_EXPORT_DEF( FT_Error )
|
FT_EXPORT_DEF( FT_Error )
|
||||||
|
|
|
@ -3496,7 +3496,7 @@
|
||||||
{
|
{
|
||||||
FT_ERROR(( "tt_face_build_cmaps:"
|
FT_ERROR(( "tt_face_build_cmaps:"
|
||||||
" unsupported `cmap' table format = %d\n",
|
" unsupported `cmap' table format = %d\n",
|
||||||
TT_PEEK_USHORT( p - 2) ));
|
TT_PEEK_USHORT( p - 2 ) ));
|
||||||
return FT_THROW( Invalid_Table );
|
return FT_THROW( Invalid_Table );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -9004,9 +9004,9 @@
|
||||||
/* If any errors have occurred, function tables may be broken. */
|
/* If any errors have occurred, function tables may be broken. */
|
||||||
/* Force a re-execution of `prep' and `fpgm' tables if no */
|
/* Force a re-execution of `prep' and `fpgm' tables if no */
|
||||||
/* bytecode debugger is run. */
|
/* bytecode debugger is run. */
|
||||||
if ( CUR.error
|
if ( CUR.error &&
|
||||||
&& !CUR.instruction_trap
|
!CUR.instruction_trap &&
|
||||||
&& CUR.curRange == tt_coderange_glyph )
|
CUR.curRange == tt_coderange_glyph )
|
||||||
{
|
{
|
||||||
FT_TRACE1(( " The interpreter returned error 0x%x\n", CUR.error ));
|
FT_TRACE1(( " The interpreter returned error 0x%x\n", CUR.error ));
|
||||||
exc->size->bytecode_ready = -1;
|
exc->size->bytecode_ready = -1;
|
||||||
|
|
Loading…
Reference in New Issue