Werner Lemberg
a3a0f57a1d
* src/autofit/aflatin.c (af_latin_metrics_scale_dim): Simplify.
14 years ago
Werner Lemberg
c3135e43f5
[autofit] Fix and add comments.
14 years ago
Werner Lemberg
3a0844c8ef
[autofit] Add more debugging functions.
...
* src/autofit/afhints.c (af_glyph_hints_get_num_segments,
af_glyph_hints_get_segment_offset): New functions.
14 years ago
Werner Lemberg
3cf3b9e32c
Minor formatting.
14 years ago
suzuki toshiya
7c6da3d73a
Add new option `--disable-mmap' to configure script.
...
* builds/unix/configure.raw: New option `--disable-mmap'
is added. It is for the developers to simulate the systems
without mmap() (like 4.3BSD, minix etc) on POSIX systems.
14 years ago
suzuki toshiya
58cb359335
[truetype] Recalculate the sfnt table checksum always.
...
* src/truetype/ttobjs.c (tt_get_sfnt_checksum): Recalculate
the sfnt table checksum even if non-zero value is writte in
the TrueType font header. Some bad PDF generators write
wrong values. For detail, see examples and benchmark tests
of the latency by recalculation:
http://lists.gnu.org/archive/html/freetype-devel/2011-04/msg00091.html
http://lists.gnu.org/archive/html/freetype-devel/2011-04/msg00096.html
14 years ago
suzuki toshiya
1e89d15a27
[truetype] Register a set of tricky fonts, NEC FA family.
...
* src/truetype/ttobjs.c (tt_check_trickyness_sfnt_ids):
Add 8 checksum sets for NEC FA family. For the tricky fonts
without some tables (e.g. NEC FA fonts lack cvt table),
extra check is added to assure that 0-length table in the
registry is not included in the font.
14 years ago
suzuki toshiya
10385e379e
Remove unrequired `else' from ttobjs.c::tt_get_sfnt_checksum().
14 years ago
suzuki toshiya
89208861ef
[truetype] Fix a bug in the sfnt table checksum getter.
...
* src/truetype/ttobjs.c (tt_get_sfnt_checksum): Check the
return value of face->goto_table() correctly.
14 years ago
Werner Lemberg
b9aa1f1339
[autofit] Improve tracing messages.
...
* src/autofit/aflatin.c (af_latin_metrics_init_blues,
af_latin_align_linked_edge, af_latin_hint_edges): Do it.
14 years ago
suzuki toshiya
86b7b2f614
[truetype] Revert the reordering of trickyness checking.
...
Trickyness check by the family name is faster than that by
the checksum.
14 years ago
suzuki toshiya
abc47aa136
[truetype] Always check the checksum to identify tricky fonts.
...
Some PDF generators mangle the family name badly, prioritize
the check by the sfnt table checksums than the check by the
family name. For sample PDF, see
http://lists.gnu.org/archive/html/freetype-devel/2011-04/msg00073.html
* src/truetype/ttobjs.c (tt_check_trickyness): Exchange the order
of tt_check_trickyness_family() and tt_check_trickyness_sfnt_ids().
14 years ago
suzuki toshiya
233f9d5dd2
[autofit] Add more Indic scripts with hanging baseline.
...
* src/autofit/afindic.c (af_indic_uniranges): Tibetan, Limbu,
Sundanese, Meetei Mayak, Syloti Nagri and Sharada scripts are
added.
14 years ago
Werner Lemberg
a8dbf7dbbc
Merge branch 'master' of git.sv.gnu.org:/srv/git/freetype/freetype2
...
Conflicts:
ChangeLog
14 years ago
Behdad Esfahbod
8c82ec5b17
Always ignore global advance.
...
This makes FT_LOAD_IGNORE_GLOBAL_ADVANCE_WIDTH redundant,
deprecated, and ignored. The new behavior is what every major user
of FreeType has been requesting. Global advance is broken in many
CJK fonts. Just ignoring it by default makes most sense.
* src/truetype/ttdriver.c (tt_get_advances),
src/truetype/ttgload.c (TT_Get_HMetrics, TT_Get_VMetrics,
tt_get_metrics, compute_glyph_metrics, TT_Load_Glyph),
src/truetype/ttgload.h: Implement it.
* docs/CHANGES: Updated.
14 years ago
suzuki toshiya
94eff482ca
Fix mismatched indents in src/autofit/aflatin2.c.
14 years ago
suzuki toshiya
a345c0e1d5
[autofit] Blur CJK stems if too many to preserve their gaps
14 years ago
Werner Lemberg
d503b1bce2
Integrate autofitter debugging stuff.
...
* devel/ftoption.h, include/freetype/config/ftoption.h
(FT_DEBUG_AUTOFIT): New macro.
* include/freetype/internal/fttrace.h: Add trace components for
autofitter.
* src/autofit/aftypes.h (AF_LOG): Removed.
(_af_debug): Removed.
* src/autofit/*: s/AF_DEBUG/FT_DEBUG_AUTOFIT/.
s/AF_LOG/FT_TRACE5/.
Define FT_COMPONENT where necessary.
14 years ago
Werner Lemberg
de2de6b1fb
Remove dead debugging code.
14 years ago
Werner Lemberg
575078d2b4
Formatting nits.
14 years ago
Werner Lemberg
149f5438c4
Synchronize config files.
...
* builds/unix/ftconfig.in: Copy missing assembler routines from
include/freetype/config/ftconfig.h.
14 years ago
Werner Lemberg
9b00875093
Fix Savannah bug #33047 .
...
Patch submitted by anonymous reporter.
* src/psaux/psobjs.c (ps_table_add): Use FT_PtrDist for pointer
difference.
14 years ago
Werner Lemberg
b9baff23f4
Document BBox and CBox computation problems for tricky fonts.
14 years ago
Kan-Ru Chen
21b1a0de7c
Fix reading of signed integers from files on 64bit platforms.
...
Previously, signed integers were converted to unsigned integers, but
this can fail because of sign extension. For example, 0xa344a1eb
becomes 0xffffffffa344a1eb.
We now do the reverse which is always correct because the integer
size is the same during the cast from unsigned to signed.
* include/freetype/internal/ftstream.h, src/base/ftstream.c
(FT_Stream_Get*): Replace with...
(FT_Stream_GetU*): Functions which read unsigned integers.
Update all macros accordingly.
* src/gzip/ftgzip.c (ft_gzip_get_uncompressed_size): Updated.
14 years ago
Werner Lemberg
7f03a2465c
Update Unicode ranges for CJK autofitter; in particular, add Hangul.
...
* src/autofit/afcjk.c (af_cjk_uniranges): Update to Unicode 6.0.
14 years ago
Werner Lemberg
948a8fb674
Fix formatting of autofit debug dumps.
...
* src/autofit/afhints.c (af_glyph_hints_dump_points,
af_glyph_hints_dump_segments, af_glyph_hints_dump_edges): Adjust
column widths.
14 years ago
Werner Lemberg
9f5ed8118c
Cosmetics.
14 years ago
Werner Lemberg
544adf7313
Whitespace, typo.
14 years ago
Werner Lemberg
ef11551868
* src/autofit/aftypes.h (AF_OutlineRec): Removed, unused.
14 years ago
Werner Lemberg
90f0487ff1
Cosmetics.
14 years ago
Werner Lemberg
f3c57917f0
Copyright.
14 years ago
Werner Lemberg
360646c968
* src/cff/cfftypes.h (CFF_MAX_CID_FONTS): Increase to 256.
...
This limit is given on p. 37 of Adobe Tech Note #5014 .
14 years ago
Werner Lemberg
01caf4a7a9
* src/truetype/ttpload.c(tt_face_load_loca): Fix mismatch warning.
14 years ago
Werner Lemberg
6e3fee0b54
Typo.
14 years ago
Werner Lemberg
da08e6974c
Ignore *.o and *.a files.
14 years ago
Werner Lemberg
af7b8b1a9f
* src/sfnt/sfobjs.c (sfnt_open_font): Check number of TTC subfonts.
14 years ago
Werner Lemberg
8bd77f9030
More C++ compilation fixes.
...
* src/autofit/afhints.c (af_glyph_hints_dump_points,
af_glyph_hints_dump_segments, af_glyph_hints_dump_edges)
[__cplusplus]: Protect with `extern "C"'.
14 years ago
Werner Lemberg
c7f26a1982
C++ compilation fixes.
...
* src/autofit/aflatin.c (af_latin_hints_apply), src/autofit/afcjk.c
(af_cjk_hints_apply): Use cast for `dim'.
14 years ago
Alexei Podtelezhnikov
8fb8841430
A better fix for Savannah bug #32671 .
...
* src/smooth/ftgrays.c (gray_render_conic): Clean up code and
replace WHILE loop with a more natural DO-WHILE construct.
14 years ago
Werner Lemberg
437fb8ebf8
* src/base/ftstroke.c (FT_StrokerRec): Remove unused `valid' field.
...
Suggested by Graham Asher.
14 years ago
Werner Lemberg
cecd912747
Make FT_Sfnt_Table_Info return the number of SFNT tables.
...
* src/sfnt/sfdriver.c (sfnt_table_info): Implement it.
* include/freetype/tttables.h: Update documentation.
* docs/CHANGES: Updated.
14 years ago
Werner Lemberg
d87389e9d3
Whitespace.
14 years ago
Bram Tassyns
3fd158d0ce
Fix Savannah bug #27988 .
...
* src/cff/cffobjs.c (remove_style): New function.
(cff_face_init): Use it to strip off the style part of the family
name.
14 years ago
Werner Lemberg
9c111b0179
* docs/CHANGES: Updated.
14 years ago
Werner Lemberg
6c045535ea
Quick fix for Savannah bug #32671 .
...
This isn't the optimal solution yet, but it restores the previous
rendering quality (more or less).
* src/smooth/ftgrays.c (gray_render_conic): Do more splitting.
14 years ago
Werner Lemberg
c9bdfa7e65
Fix autohinting fallback.
...
* src/base/ftobjs.c (FT_Load_Glyph): Assure that we only check TTFs,
ignoring CFF-based OTFs.
14 years ago
Werner Lemberg
4d0586f0da
Whitespace.
14 years ago
Werner Lemberg
576fc2c06e
Add AF_CONFIG_OPTION_USE_WARPER to control the autofit warper.
...
* devel/ftoption.h, include/freetype/config/ftoption.h
(AF_CONFIG_OPTION_USE_WARPER): New macro.
* src/autofit/aftypes.h (AF_USE_WARPER): Remove.
* src/autofit/*: s/AF_USE_WARPER/AF_CONFIG_OPTION_USE_WARPER/.
* src/autofit/afwarp.c [!AF_CONFIG_OPTION_USE_WARPER]: Replace dummy
variable assignment with a typedef.
14 years ago
Werner Lemberg
e547a656a5
[autofit] More comments, formatting, whitespace.
14 years ago
Werner Lemberg
b7fc0c7461
[autofit] Slight simplifications.
...
* src/autofit/aflatin.c (af_latin_hints_link_segments): Remove
test which always returns false.
(af_latin_hints_compute_blue_edges): Remove redundant assignment.
14 years ago