mirror of https://github.com/freetype/freetype
* 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:
parent
e0ec6b3d53
commit
b6b6337539
12
ChangeLog
12
ChangeLog
|
@ -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>
|
||||
|
||||
* 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>
|
||||
|
||||
* 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
|
||||
TrueType rounding exactly as appropriate.
|
||||
|
||||
|
|
|
@ -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
|
||||
properly.
|
||||
|
||||
- there was a nasty memory leak when using embedded bitmaps in certain
|
||||
font formats.
|
||||
|
||||
II. IMPORTANT CHANGES
|
||||
|
||||
- David Chester contributed some enhancements to the auto-hinter that
|
||||
|
|
|
@ -39,8 +39,8 @@ FT_BEGIN_HEADER
|
|||
|
||||
typedef struct BDF_encoding_el_
|
||||
{
|
||||
FT_ULong enc;
|
||||
FT_Short glyph;
|
||||
FT_ULong enc;
|
||||
FT_UShort glyph;
|
||||
|
||||
} BDF_encoding_el;
|
||||
|
||||
|
|
|
@ -124,10 +124,10 @@ FT_BEGIN_HEADER
|
|||
} PCF_AccelRec, *PCF_Accel;
|
||||
|
||||
|
||||
typedef struct PCD_EncodingRec_
|
||||
typedef struct PCF_EncodingRec_
|
||||
{
|
||||
FT_Long enc;
|
||||
FT_Short glyph;
|
||||
FT_Long enc;
|
||||
FT_UShort glyph;
|
||||
|
||||
} PCF_EncodingRec, *PCF_Encoding;
|
||||
|
||||
|
|
Loading…
Reference in New Issue