[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Devel] Freetype on 16 bit system.
From: |
Glenn Peterman |
Subject: |
[Devel] Freetype on 16 bit system. |
Date: |
Wed, 22 Aug 2001 09:32:52 -0500 |
When using the
bytecode interpreter, there is a mismatch in function arguments for the Move
function.
from
ttinterp.h:
/* Point
displacement along the freedom vector routine */
typedef void
(*TT_Move_Func)( EXEC_OP_ TT_GlyphZone*
zone,
FT_UInt
point,
FT_F26Dot6 distance );
In
ttinterp.c:
void
Direct_Move( EXEC_OP_ TT_GlyphZone*
zone,
FT_UShort
point,
FT_F26Dot6 distance )
void
Direct_Move_X( EXEC_OP_ TT_GlyphZone*
zone,
FT_UShort
point,
FT_F26Dot6 distance )
void
Direct_Move_Y( EXEC_OP_ TT_GlyphZone*
zone,
FT_UShort
point,
FT_F26Dot6 distance )
Notice the second
argument's type is not the same.
- [Devel] Freetype on 16 bit system.,
Glenn Peterman <=