formatting
This commit is contained in:
parent
fd88e7c7c8
commit
effa96496e
|
@ -149,7 +149,7 @@ THE SOFTWARE.
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
FT_CALLBACK_TABLE const FT_CMap_ClassRec pcf_cmap_class =
|
FT_CALLBACK_TABLE_DEF const FT_CMap_ClassRec pcf_cmap_class =
|
||||||
{
|
{
|
||||||
sizeof( PCF_CMapRec ),
|
sizeof( PCF_CMapRec ),
|
||||||
(FT_CMap_InitFunc) pcf_cmap_init,
|
(FT_CMap_InitFunc) pcf_cmap_init,
|
||||||
|
|
|
@ -416,7 +416,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
FT_CALLBACK_TABLE const FT_CMap_ClassRec
|
FT_CALLBACK_TABLE_DEF const FT_CMap_ClassRec
|
||||||
t1_cmap_unicode_class_rec =
|
t1_cmap_unicode_class_rec =
|
||||||
{
|
{
|
||||||
sizeof( T1_CMapUnicodeRec ),
|
sizeof( T1_CMapUnicodeRec ),
|
||||||
|
|
|
@ -157,7 +157,7 @@
|
||||||
header->pixel_width = header->pixel_height;
|
header->pixel_width = header->pixel_height;
|
||||||
|
|
||||||
/* this is a FNT file/table, we now extract its frame */
|
/* this is a FNT file/table, we now extract its frame */
|
||||||
if ( FT_STREAM_SEEK( font->offset ) ||
|
if ( FT_STREAM_SEEK( font->offset ) ||
|
||||||
FT_FRAME_EXTRACT( header->file_size, font->fnt_frame ) )
|
FT_FRAME_EXTRACT( header->file_size, font->fnt_frame ) )
|
||||||
goto Exit;
|
goto Exit;
|
||||||
|
|
||||||
|
@ -225,7 +225,7 @@
|
||||||
|
|
||||||
if ( FT_STREAM_SEEK( res_offset ) ||
|
if ( FT_STREAM_SEEK( res_offset ) ||
|
||||||
FT_FRAME_ENTER( ne_header.rname_tab_offset -
|
FT_FRAME_ENTER( ne_header.rname_tab_offset -
|
||||||
ne_header.resource_tab_offset ) )
|
ne_header.resource_tab_offset ) )
|
||||||
goto Exit;
|
goto Exit;
|
||||||
|
|
||||||
size_shift = FT_GET_USHORT_LE();
|
size_shift = FT_GET_USHORT_LE();
|
||||||
|
@ -349,15 +349,14 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static FT_UInt32
|
static FT_UInt
|
||||||
fnt_cmap_char_next( FT_CMap cmap,
|
fnt_cmap_char_next( FT_CMap cmap,
|
||||||
FT_UInt32 char_code,
|
FT_UInt32 *pchar_code )
|
||||||
FT_UInt *agindex )
|
|
||||||
{
|
{
|
||||||
FT_UInt gindex = 0;
|
FT_UInt gindex = 0;
|
||||||
FT_UInt32 result = 0;
|
FT_UInt32 result = 0;
|
||||||
|
FT_UInt32 char_code = *pchar_code + 1;
|
||||||
|
|
||||||
char_code ++;
|
|
||||||
if ( char_code <= cmap->first )
|
if ( char_code <= cmap->first )
|
||||||
{
|
{
|
||||||
result = cmap->first;
|
result = cmap->first;
|
||||||
|
@ -373,8 +372,8 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
*agindex = gindex;
|
*pchar_code = result;
|
||||||
return result;
|
return gindex;
|
||||||
}
|
}
|
||||||
|
|
||||||
static FT_CMap_ClassRec fnt_cmap_class_rec =
|
static FT_CMap_ClassRec fnt_cmap_class_rec =
|
||||||
|
|
Loading…
Reference in New Issue