* src/raster/ftrend1.c (ft_raster1_render): fixed a nasty outline
shifting bug in the monochrome renderer. * README: updated version numbers to 2.0.6
This commit is contained in:
parent
aef3fc816b
commit
fc3a316441
|
@ -1,3 +1,10 @@
|
|||
2001-12-19 David Turner <david@freetype.org>
|
||||
|
||||
* src/raster/ftrend1.c (ft_raster1_render): fixed a nasty outline
|
||||
shifting bug in the monochrome renderer.
|
||||
|
||||
* README: updated version numbers to 2.0.6
|
||||
|
||||
2001-12-17 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
* src/truetype/ttgload.c (load_truetype_glyph): Fix test for invalid
|
||||
|
|
6
README
6
README
|
@ -1,5 +1,5 @@
|
|||
|
||||
FreeType 2.0.5
|
||||
FreeType 2.0.6
|
||||
==============
|
||||
|
||||
Please read the docs/CHANGES file, it contains IMPORTANT INFORMATION.
|
||||
|
@ -9,8 +9,8 @@
|
|||
Note that the FreeType 2 documentation is now available as a separate
|
||||
package from our sites. See:
|
||||
|
||||
ftp://ftp.freetype.org/pub/freetype2/ftdocs-2.0.5.tar.bz2
|
||||
ftp://ftp.freetype.org/pub/freetype2/ftdocs-2.0.5.tar.gz
|
||||
ftp://ftp.freetype.org/pub/freetype2/ftdocs-2.0.6.tar.bz2
|
||||
ftp://ftp.freetype.org/pub/freetype2/ftdocs-2.0.6.tar.gz
|
||||
ftp://ftp.freetype.org/pub/freetype2/ftdoc205.zip
|
||||
|
||||
Enjoy!
|
||||
|
|
|
@ -193,6 +193,9 @@
|
|||
|
||||
/* render outline into the bitmap */
|
||||
error = render->raster_render( render->raster, ¶ms );
|
||||
|
||||
FT_Outline_Translate( outline, cbox.xMin, cbox.yMin );
|
||||
|
||||
if ( error )
|
||||
goto Exit;
|
||||
|
||||
|
|
Loading…
Reference in New Issue