Werner Lemberg
443a976885
A fix from Tom to fix the last=first point problem if it is a control point.
25 years ago
Werner Lemberg
01bd7d5825
provide `export "C"' guard only for default fterror handling.
25 years ago
Werner Lemberg
5977c98470
patch from Tom to fix a problem with path_begun.
25 years ago
Werner Lemberg
efd108b60b
fix documentation
25 years ago
David Turner
ea917dae6c
fixed a small bug in the uninstall mode
25 years ago
Werner Lemberg
c817a7ee73
minor formatting issues
25 years ago
David Turner
d092659818
fixed two bugs:
...
- one bug in the auto-hinter that could cause some program
crashes with certain fonts
- fixed the loading of the font matrix "offset" parameters
in Type 1 and CID-keyed fonts..
25 years ago
David Turner
4564ca8a2c
small fix:
...
when in direct rendering mode, the target bitmap buffer
is not checked..
25 years ago
David Turner
3c491067c4
small fix:
...
when in direct rendering mode, the target bitmap buffer
is not checked..
25 years ago
David Turner
3ee4450879
changing the linkage type of
...
FT_New_GlyphSlot and FT_Done_GlyphSlot to
BASE_DEF instead of FT_EXPORT_DEF
25 years ago
David Turner
cc11a05b8a
updated the build system:
...
- new files for the "cygwin" platform
- new workspace files for Visual C++ in "builds/win32/visualc"
- updated "docs/BUILD" slightly
25 years ago
David Turner
3eff67185e
adding missing image files
25 years ago
David Turner
43764232b8
removing obsolete files:
...
the design of FT2 has evolved considerably since
these documents were written, and it's better not to
include them in order to avoid confusion among
users of the library..
25 years ago
Werner Lemberg
59266f23c9
Fixing comment in unixddef.mk which caused a trailing blank.
...
25 years ago
David Turner
36afdb3a8b
fixed a bug in the Type 1 and CID font drivers:
...
the value of the descent returned was positive,
instead of being negative..
25 years ago
Werner Lemberg
0339b6849c
Adding missing code for flat compiling mode.
25 years ago
Werner Lemberg
fd3b8e7ca1
Clean up, formatting etc.
...
25 years ago
Werner Lemberg
d1242ba4bb
Fixed typo in ftimage.h
...
25 years ago
Werner Lemberg
59395eca56
Applied a patch from Hidetoshi for embedded bitmap metrics support.
25 years ago
Werner Lemberg
6f3293e0b5
Added support for (3,0) pid/eid.
25 years ago
David Turner
674826fa81
fixed a bug that happened when rendering spaces
...
in monochrome mode..
actually, when outline.num_points == 0, it is legal
to have outline.points == 0 too. The code did return
a FT_Err_Invalid_Outline error incorrectly then because
the checks were not performed in the correct order
25 years ago
David Turner
5483e69cd8
small update, allow CONFIG_MK to be pre-defined
...
before inclusion
25 years ago
David Turner
214a13db23
final touches. Cache seems working after all, though the
...
default cache size of 300 Kb is certainly too high for
now :-)
Need to implement abstract chunk cache and bitmap chunck cache
25 years ago
David Turner
3752ad97d8
updated the cache sub-system. Major internal rewrite
...
please be aware that major bug persist..
25 years ago
David Turner
2905ff93b1
removed obsolete file (ftcimage.h)
...
updated header files
25 years ago
David Turner
ac1c157d2c
fixed minor bug in the smooth renderer which forced
...
the span callback to be called with y == -1 and count == 0
25 years ago
David Turner
05b3a9d6f8
major revamp of the build system.
...
Fixing the Unix Autoconf parts
25 years ago
David Turner
71441881ab
adding updated cache header files
25 years ago
David Turner
2c4a21d3e3
removed obsolete files
25 years ago
David Turner
76ca167b28
major revamp of the build system
25 years ago
David Turner
a3dca2781b
small bug-fix, the linearHoriBearing value was not
...
loaded not computed correctly
25 years ago
David Turner
4e0cebbd51
small bug-fix
25 years ago
David Turner
dc2cc76d62
fixed a very stupid bug that prevented FT_Outline_Render from
...
working correctly..
25 years ago
Werner Lemberg
3254bd1f00
small formatting issues.
25 years ago
David Turner
99fbfd9a68
- added a new function called FT_SqrtFixed to compute the
...
16.16 square root of a 16.16 number (this could come handy
in a later version of the auto-hinter)
- small fixes to the smooth renderer. It used to use way too
much line segments when drawing beziers !!
25 years ago
Werner Lemberg
4138ded5db
Fixed a long outstanding bug with an incorrect offset for reading post
...
25 years ago
Werner Lemberg
4222466667
Small improvement.
25 years ago
David Turner
80c2a6ec1d
- the file "ftlist.h" was moved from <freetype/internal/..> to
...
<freetype/...>
- bugfix for the cache sub-system..
25 years ago
Just van Rossum
99a69671d0
updated for new modules and sources (mainly psaux)
25 years ago
Werner Lemberg
7f7174ef2f
More warnings fixed.
25 years ago
Werner Lemberg
740eb33162
Minor fixes.
25 years ago
Werner Lemberg
a935908615
Introducing new macro LOCA_VAR to solve some problems with structures
...
25 years ago
David Turner
f96983e003
fixed some bugs in the caching sub-system and improved
...
its API to enable many kinds of glyph images..
(note that the "ftview" program has been changed to
use the caching sub-system, "ftmulti" and "ftstring"
should come soon).
25 years ago
David Turner
a84d72d1fc
a small optimisation that should speed things a bit.
...
I'm surprised I didn't do it before..
25 years ago
David Turner
96bfe27722
a fix to the computation of the font "text height" (i.e. the
...
baseline-to-baseline distance).
Unfortunately, we cannot rely on the OS/2 fields, like
sTypoAscender or usWinAscent to compute it. Rather,
we only look at the horizontal header's content. In case
the "line gap" is set to 0, we compute the text height as
115% of the ascender+descender value..
(this percentage is based on the values found in many
Windows fonts).
25 years ago
Werner Lemberg
312b59b7c0
Formatting.
...
25 years ago
Werner Lemberg
ec54ffde03
Introducing new error code FT_Err_Invalid_Cache_Handle.
...
25 years ago
Just van Rossum
2bd5f22191
#include <freetype/internal/ftdebug.h> /* for FT_ERROR() */
25 years ago
Werner Lemberg
1a6f111f6f
Formatting, small fixes.
...
25 years ago
David Turner
1724ba2848
- fixed an horrible FT_LOAD_RENDER bug that returned empty
...
bitmaps !!
- tested and fixed the image cache object. I'm performing a
few more checks though, and we'll call the cache sub-system
completed !!
25 years ago