* src/truetype/ttdriver.c (Load_Glyph): Fourth parameter must be

FT_Int32.
* src/truetype/ttgload.c, src/truetype/ttgload.h (TT_Load_Glyph):
Ditto.
This commit is contained in:
Werner Lemberg 2002-09-21 18:43:10 +00:00
parent d02e984ed9
commit 065b261496
4 changed files with 10 additions and 3 deletions

View File

@ -1,3 +1,10 @@
2002-09-21 Wolfgang Domröse <porthos.domroese@harz.de>
* src/truetype/ttdriver.c (Load_Glyph): Fourth parameter must be
FT_Int32.
* src/truetype/ttgload.c, src/truetype/ttgload.h (TT_Load_Glyph):
Ditto.
2002-09-19 Wolfgang Domröse <porthos.domroese@harz.de>
More 16bit fixes.

View File

@ -295,7 +295,7 @@
Load_Glyph( TT_GlyphSlot slot,
TT_Size size,
FT_UShort glyph_index,
FT_UInt load_flags )
FT_Int32 load_flags )
{
FT_Error error;

View File

@ -1584,7 +1584,7 @@
TT_Load_Glyph( TT_Size size,
TT_GlyphSlot glyph,
FT_UShort glyph_index,
FT_UInt load_flags )
FT_Int32 load_flags )
{
SFNT_Service sfnt;
TT_Face face;

View File

@ -44,7 +44,7 @@ FT_BEGIN_HEADER
TT_Load_Glyph( TT_Size size,
TT_GlyphSlot glyph,
FT_UShort glyph_index,
FT_UInt load_flags );
FT_Int32 load_flags );
FT_END_HEADER