* src/bdf/bdfdrivr.h, src/pcf/pcf.h: changed FT_Short to FT_UShort in

order to be able to access more than 32768 glyphs in fonts
This commit is contained in:
David Turner 2003-04-09 06:55:57 +00:00
parent e0ec6b3d53
commit b6b6337539
4 changed files with 19 additions and 6 deletions

View File

@ -1,3 +1,13 @@
2003-04-09 Mike Fabian <mfabian@suse.de>
* src/bdf/bdfdrivr.h, src/pcf/pcf.h: changed FT_Short to FT_UShort in
order to be able to access more than 32768 glyphs in fonts
2003-04-08 David Turner <david@freetype.org>
FreeType 2.1.4 Released
=======================
2003-04-03 Martin Muskens <mmuskens@aurelon.com> 2003-04-03 Martin Muskens <mmuskens@aurelon.com>
* src/type1/t1load.c (T1_Open_Face): fixed the code to make it handle * src/type1/t1load.c (T1_Open_Face): fixed the code to make it handle
@ -47,7 +57,7 @@
2003-03-15 David Turner <david@freetype.org> 2003-03-15 David Turner <david@freetype.org>
* src/truetyoe/ttdriver.c (Set_Char_Sizes): fixed a small rounding bug. * src/truetype/ttdriver.c (Set_Char_Sizes): fixed a small rounding bug.
Actually, it seems that previous versions of FreeType didn't perform Actually, it seems that previous versions of FreeType didn't perform
TrueType rounding exactly as appropriate. TrueType rounding exactly as appropriate.

View File

@ -41,6 +41,9 @@ LATEST CHANGES BETWEEN 2.1.4 and 2.1.3
- the PFR driver didn't return the list of available embedded bitmaps - the PFR driver didn't return the list of available embedded bitmaps
properly. properly.
- there was a nasty memory leak when using embedded bitmaps in certain
font formats.
II. IMPORTANT CHANGES II. IMPORTANT CHANGES
- David Chester contributed some enhancements to the auto-hinter that - David Chester contributed some enhancements to the auto-hinter that

View File

@ -39,8 +39,8 @@ FT_BEGIN_HEADER
typedef struct BDF_encoding_el_ typedef struct BDF_encoding_el_
{ {
FT_ULong enc; FT_ULong enc;
FT_Short glyph; FT_UShort glyph;
} BDF_encoding_el; } BDF_encoding_el;

View File

@ -124,10 +124,10 @@ FT_BEGIN_HEADER
} PCF_AccelRec, *PCF_Accel; } PCF_AccelRec, *PCF_Accel;
typedef struct PCD_EncodingRec_ typedef struct PCF_EncodingRec_
{ {
FT_Long enc; FT_Long enc;
FT_Short glyph; FT_UShort glyph;
} PCF_EncodingRec, *PCF_Encoding; } PCF_EncodingRec, *PCF_Encoding;