mirror of
https://gitlab.freedesktop.org/freetype/freetype.git
synced 2026-05-24 20:48:14 +02:00
parameter sign-ness in callback function
* include/freetype/config/ftmodule.h,
include/freetype/internal/fttrace.h,
src/Jamfile, src/pfr/*:
adding a PFR font driver to the FreeType sources. Not that it
doesn't support embedded bitmaps or kerning tables for now..
* include/freetype/internal/ftmemory.h: adding the FT_MEM_ZERO
and FT_ZERO macros
* include/freetype/internal/ftstream.h: adding the FT_NEXT_OFF3,
FT_NEXT_UOFF3, FT_NEXT_OFF3_LE and FT_NEXT_UOFF3_LE to parse
in-memory 24-bit integers.
34 lines
991 B
Text
34 lines
991 B
Text
# FreeType 2 src Jamfile (c) 2001 David Turner
|
|
#
|
|
|
|
SubDir FT2_TOP src ;
|
|
|
|
# We need to add "freetype/src" to the current include path in order to
|
|
# compile any part of FreeType 2.
|
|
#
|
|
SubDirHdrs [ FT2_SubDir src ] ;
|
|
|
|
# The file <freetype/internal/internal.h> is used to define macros that are
|
|
# later used in #include statements. It needs to be parsed in order to
|
|
# record these definitions.
|
|
#
|
|
HDRMACRO [ FT2_SubDir include internal internal.h ] ;
|
|
|
|
SubInclude FT2_TOP src pshinter ;
|
|
SubInclude FT2_TOP src autohint ;
|
|
SubInclude FT2_TOP src base ;
|
|
SubInclude FT2_TOP src cache ;
|
|
SubInclude FT2_TOP src cff ;
|
|
SubInclude FT2_TOP src cid ;
|
|
SubInclude FT2_TOP src pcf ;
|
|
SubInclude FT2_TOP src pfr ;
|
|
SubInclude FT2_TOP src psaux ;
|
|
SubInclude FT2_TOP src psnames ;
|
|
SubInclude FT2_TOP src raster ;
|
|
SubInclude FT2_TOP src sfnt ;
|
|
SubInclude FT2_TOP src smooth ;
|
|
SubInclude FT2_TOP src truetype ;
|
|
SubInclude FT2_TOP src type1 ;
|
|
SubInclude FT2_TOP src winfonts ;
|
|
|
|
# end of src Jamfile
|