David Turner
4e7eeeec7b
yet another logical transformation of the internals to make them
...
more consistent and understandable..
mainly, changing things like PS_Table => PS_TableRec + *PS_Table
23 years ago
David Turner
c03d9cf5cd
* src/sfnt/ttload.c (TT_Load_Names): simplifying and securing the
...
names table loader. Invalid individual name entries are now handled
correctly. This allows the loading of very buggy fonts like
"foxjump.ttf" without allocating tons of memory and causing crashes..
23 years ago
David Turner
617a2e1c3c
adding several experimental sources:
...
- OpenType Layout validation and parsing (common tables)
- Type 1 charmap processing
23 years ago
David Turner
53b3fa1da5
* renaming stream functions to the FT_Subject_Action scheme:
...
FT_Seek_Stream => FT_Stream_Seek
FT_Skip_Stream => FT_Stream_Skip
FT_Read_Stream => FT_Stream_Read
FT_Read_Stream_At => FT_Stream_Read_At
FT_Access_Frame => FT_Stream_Enter_Frame
FT_Forget_Frame => FT_Stream_Exit_Frame
FT_Extract_Frame => FT_Stream_Extract_Frame
FT_Release_Frame => FT_Stream_Release_Frame
FT_Get_XXXX => FT_Stream_Get_XXXX
FT_Read_XXXX => FT_Stream_Read_XXXX
note also that:
FT_New_Stream( filename, stream ) =>
FT_Stream_Open( stream, filename )
(the function doesn't create the FT_Stream structure, it simply
initializes it for reading)
FT_New_Memory_Stream( library, FT_Byte* base, size, stream ) =>
FT_Stream_Open_Memory( stream, const FT_Byte* base, size )
FT_Done_Stream => FT_Stream_Close
note that the name of the stream methods, defined in
"include/freetype/ftsystem.h" have also been changed without
problems:
FT_Stream_IO => FT_Stream_IOFunc
FT_Stream_Close => FT_Stream_CloseFunc
23 years ago
David Turner
4d57024d1c
* moving all code related to glyph loaders to "internal/ftgloadr.h"
...
and "src/base/ftgloadr.c".
Note also that the type "FT_GlyphLoader" is now a pointer to the
structure "FT_GlyphLoaderRec"..
23 years ago
David Turner
4a23351091
renaming "ft_glyph_own_bitmap" into "FT_GLYPH_OWN_BITMAP"
23 years ago
David Turner
d248d8d681
adding API-specific source
23 years ago
David Turner
23ce5d4575
adding new & experimental charmap processor
23 years ago
David Turner
2c2b3734e7
adding glyph loader routines (previously in ftobjs.c)
23 years ago
David Turner
44ef8cae07
adding glyph loader header file (previously in ftobjs.h)
23 years ago
David Turner
33242884f9
adding file containing error definitions (unlike fterrors.h which also
...
contains macro definitions)..
the changes are not finished yet..
23 years ago
David Turner
c919c7d461
adding new file
23 years ago
Werner Lemberg
af8df8503f
* include/freetype/internal/ftdebug.h (FT_Trace): Remove comma in
...
23 years ago
David Turner
222cec8c20
* include/freetype/internal/ftdebug.h, src/base/ftdebug.c: modified
...
the debug sub-system initialization. trace levels can now be specified
within the "FT2_DEBUG" environment variable. See the comments within
"ftdebug.c" for more details
* include/freetype/internal/fttrace.h: new file to define the trace
levels used for debugging. it is used both to define enums and
toggle names for FT2_DEBUG
* src/base/ftobjs.c, src/base/ftstream.c: FT_Assert renamed to
FT_ASSERT
* include/freetype/internal/ftextend.h, src/base/ftextend.c,
src/base/Jamfile, src/base/rules.mk: removing "ftextend" from the
library, since it is now completely obsolete..
23 years ago
David Turner
90839fa969
adding "devel@freetype.org" address for bug reports
23 years ago
Werner Lemberg
258951d7c5
* builds/unix/install.mk (check): New dummy target.
...
23 years ago
Werner Lemberg
b5349a9b75
* builds/freetype.mk (FT_CFLAGS): Use $(INCLUDE_FLAGS) first.
...
23 years ago
Werner Lemberg
a7d2f5e1c0
* src/autohint/ahglyph.c (ah_outline_link_segments): Remove unused
...
23 years ago
Werner Lemberg
66b3509bdd
Add support for ISOLatin1 PS encoding.
...
23 years ago
Werner Lemberg
7c89d18d9f
* README: Fix typo.
...
23 years ago
David Turner
1c6af4855a
updating docs for 2.0.8
23 years ago
David Turner
0a2c691030
setting PATH_LEVEL to 8
...
removing FT_Get_Next_Char from the API (for the 2.0.8 release)
23 years ago
Werner Lemberg
7d69560afb
cleaning
23 years ago
David Turner
57b8fcacd3
adding comments to FT_Get_Next_Char
23 years ago
Werner Lemberg
60a1fab094
some cleaning
23 years ago
David Turner
5a902ec20f
* src/pcf/pcfread.c (pcf_load_font): removed immature support of
...
the AVERAGE_WIDTH property..
23 years ago
David Turner
27f6a05ed5
support for embedded fonts in PDF documents. These
...
often do not have a 'cmap', 'post' and 'name' table and
were not loaded by FreeType previously..
(thanks to Derek B. Noonburgs from XPDF)
23 years ago
David Turner
0489328e97
fixing memory leak in the PCF driver, and managing the
...
"AVERAGE_WIDTH" property in PCF fonts to return correct
character pixel (width/height) pairs for embedded bitmaps..
23 years ago
David Turner
cae232d4f4
removing compiler warnings
23 years ago
Werner Lemberg
0f7c2f1aa5
Adding the function `FT_Get_Next_Char', doing the obvious thing
...
23 years ago
Werner Lemberg
3604d5f558
* builds/unix/freetype-config.in: Add missing `fi'.
23 years ago
David Turner
4c40011140
increasing FREETYPE_PATCH to 7
23 years ago
Werner Lemberg
32b534612d
Formatting.
23 years ago
David Turner
944b72986f
updating documentation for 2.0.7
23 years ago
Werner Lemberg
b0e06e0b8b
Fix ChangeLog.
23 years ago
David Turner
a40fb43d7e
moved INSTALL to docs/INSTALL to get rid of conflicts with the "install"
...
script on Windows (where the file system doesn't preserve CASE)
23 years ago
David Turner
09c14ae7c8
fixed the "configure" script in the top-level directory..
...
It didn't work correctly when several arguments were passed
to it. For example, when typing:
./configure --disable-shared --prefix=/usr
the "--prefix=/usr" was incorrectly sent to the "make" program..
23 years ago
Werner Lemberg
12a8741e7b
* README.UNX: Fix typo.
...
23 years ago
Werner Lemberg
a9aa69c2c8
* src/pcf/pcfdriver.c (PCF_Done_Face): Fix incorrect destruction of
...
23 years ago
Werner Lemberg
556ad08f03
* src/type1/t1load.c (parse_encoding): Set `loader->num_chars'.
...
23 years ago
Werner Lemberg
e274290d71
* src/smooth/ftgrays.c (gray_render_scanline): Fix bug which caused
...
23 years ago
Werner Lemberg
43071cb7f2
* src/cff/cffdrivr.c (cff_get_name_index): Make last patch work
...
23 years ago
Werner Lemberg
8880f2c14d
* src/cache/ftccache.c (ftc_node_done, ftc_node_destroy): Fix
...
23 years ago
Antoine Leca
84712cc3fb
* docs/PATENTS: Typo fixed (Thanks to Detlef "Hawkeye" Wuerkner) in the URL for the on-line resource.
23 years ago
Werner Lemberg
3f242ddd52
Undo incorrect commit.
23 years ago
Werner Lemberg
9c8ee92050
* builds/win32/ftdebug.c: New file.
...
23 years ago
Werner Lemberg
5117ff0b73
* builds/win32/visualc/freetype.dsp: Updated.
23 years ago
Werner Lemberg
2f260409a4
* builds/unix/freetype2.a4: The script was still buggy.
...
23 years ago
Werner Lemberg
51f245a615
* builds/unix/freetype2.a4: Fix some serious bugs.
23 years ago
Werner Lemberg
3975e2e1f5
Formatting.
23 years ago