2002-04-19 17:13:47 +02:00
|
|
|
/***************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* pfr.c */
|
|
|
|
/* */
|
2002-04-20 07:38:33 +02:00
|
|
|
/* FreeType PFR driver component. */
|
2002-04-19 17:13:47 +02:00
|
|
|
/* */
|
2002-04-20 07:38:33 +02:00
|
|
|
/* Copyright 2002 by */
|
2002-04-19 17:13:47 +02:00
|
|
|
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
|
|
|
|
/* */
|
|
|
|
/* This file is part of the FreeType project, and may only be used, */
|
|
|
|
/* modified, and distributed under the terms of the FreeType project */
|
|
|
|
/* license, LICENSE.TXT. By continuing to use, modify, or distribute */
|
|
|
|
/* this file you indicate that you have read the license and */
|
|
|
|
/* understand and accept it fully. */
|
|
|
|
/* */
|
|
|
|
/***************************************************************************/
|
|
|
|
|
|
|
|
#define FT_MAKE_OPTION_SINGLE_OBJECT
|
|
|
|
|
|
|
|
#include <ft2build.h>
|
|
|
|
|
|
|
|
#include "pfrload.c"
|
|
|
|
#include "pfrgload.c"
|
|
|
|
#include "pfrcmap.c"
|
|
|
|
#include "pfrobjs.c"
|
|
|
|
#include "pfrdrivr.c"
|
* src/pfr/pfrsbit.h, src/pfr/pfrsbit.c, src/pfr/pfrload.c,
src/pfr/pfrgload.c, src/pfr/pfrobjs.c, src/pfr/pfrtypes.h,
Jamfile, src/base/ftobjs.c: adding support for embedded bitmaps to
the PFR driver, and rewriting its kerning loader / handler to use all
kerning pairs in a physical font (and not just the first item).
* src/tools/docmaker/content.py, src/tools/docmaker/sources.py,
src/tools/docmaker/tohtml.py: fixing a few nasty bugs
* src/sfnt/ttcmap0.c: the validator for format 4 sub-tables is
now capable of dealing with invalid "length" fields at the start
of the sub-table. This allows fonts like "mg______.ttf" (i.e.
Marriage) to return accurate charmaps.
2002-10-05 16:57:03 +02:00
|
|
|
#include "pfrsbit.c"
|
2002-04-19 17:13:47 +02:00
|
|
|
|
|
|
|
/* END */
|