Whitespace.
This commit is contained in:
parent
bd63334ee7
commit
22fff25385
|
@ -133,7 +133,7 @@
|
|||
dist = -dist;
|
||||
|
||||
if ( num_widths < AF_LATIN_MAX_WIDTHS )
|
||||
axis->widths[ num_widths++ ].org = dist;
|
||||
axis->widths[num_widths++].org = dist;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1359,10 +1359,10 @@
|
|||
af_latin2_hints_compute_blue_edges( AF_GlyphHints hints,
|
||||
AF_LatinMetrics metrics )
|
||||
{
|
||||
AF_AxisHints axis = &hints->axis[ AF_DIMENSION_VERT ];
|
||||
AF_AxisHints axis = &hints->axis[AF_DIMENSION_VERT];
|
||||
AF_Edge edge = axis->edges;
|
||||
AF_Edge edge_limit = edge + axis->num_edges;
|
||||
AF_LatinAxis latin = &metrics->axis[ AF_DIMENSION_VERT ];
|
||||
AF_LatinAxis latin = &metrics->axis[AF_DIMENSION_VERT];
|
||||
FT_Fixed scale = latin->scale;
|
||||
FT_Pos best_dist0; /* initial threshold */
|
||||
|
||||
|
|
|
@ -1704,9 +1704,9 @@
|
|||
const FT_String* name,
|
||||
GXV_odtect_Range odtect )
|
||||
{
|
||||
odtect->range[ odtect->nRanges ].start = start;
|
||||
odtect->range[ odtect->nRanges ].length = length;
|
||||
odtect->range[ odtect->nRanges ].name = (FT_String*)name;
|
||||
odtect->range[odtect->nRanges].start = start;
|
||||
odtect->range[odtect->nRanges].length = length;
|
||||
odtect->range[odtect->nRanges].name = (FT_String*)name;
|
||||
odtect->nRanges++;
|
||||
}
|
||||
|
||||
|
|
|
@ -1113,7 +1113,7 @@
|
|||
FT_TRACE4(( "BuildCharArray = [ " ));
|
||||
|
||||
for ( i = 0; i < decoder->len_buildchar; ++i )
|
||||
FT_TRACE4(( "%d ", decoder->buildchar[ i ] ));
|
||||
FT_TRACE4(( "%d ", decoder->buildchar[i] ));
|
||||
|
||||
FT_TRACE4(( "]\n" ));
|
||||
}
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
* accepted if you are using GCC for compilation (and probably by
|
||||
* other compilers too).
|
||||
*
|
||||
* Author: David Turner, 2005, 2006, 2008, 2009, 2010
|
||||
* Author: David Turner, 2005, 2006, 2008-2012
|
||||
*
|
||||
* This code is explicitly placed into the public domain.
|
||||
*
|
||||
|
@ -208,7 +208,7 @@ typedef enum State_
|
|||
static int
|
||||
read_header_file( FILE* file, int verbose )
|
||||
{
|
||||
static char buff[ LINEBUFF_SIZE+1 ];
|
||||
static char buff[LINEBUFF_SIZE + 1];
|
||||
State state = STATE_START;
|
||||
|
||||
while ( !feof( file ) )
|
||||
|
|
|
@ -5773,13 +5773,12 @@
|
|||
static void
|
||||
Ins_SHC( INS_ARG )
|
||||
{
|
||||
TT_GlyphZoneRec zp;
|
||||
FT_UShort refp;
|
||||
FT_F26Dot6 dx,
|
||||
dy;
|
||||
TT_GlyphZoneRec zp;
|
||||
FT_UShort refp;
|
||||
FT_F26Dot6 dx, dy;
|
||||
|
||||
FT_Short contour;
|
||||
FT_UShort first_point, last_point, i;
|
||||
FT_Short contour;
|
||||
FT_UShort first_point, last_point, i;
|
||||
|
||||
|
||||
contour = (FT_UShort)args[0];
|
||||
|
|
Loading…
Reference in New Issue