formatting, copyright years
This commit is contained in:
parent
9f9bc2bc46
commit
27cf9de104
16
ChangeLog
16
ChangeLog
|
@ -1,12 +1,14 @@
|
||||||
|
2007-01-12 David Turner <david@freetype.org>
|
||||||
|
|
||||||
|
* src/base/ftbitmap.c (ft_bitmap_assure_buffer): Fix memory stomping
|
||||||
|
bug in the bitmap emboldener if the pitch of the source bitmap is
|
||||||
|
much larger than its width.
|
||||||
|
|
||||||
|
* src/truetype/ttinterp.c (Update_Max): Fix aliasing-related
|
||||||
|
compilation warning.
|
||||||
|
|
||||||
2007-01-12 Werner Lemberg <wl@gnu.org>
|
2007-01-12 Werner Lemberg <wl@gnu.org>
|
||||||
|
|
||||||
* src/base/ftbitmap.c: fixing memory stomping bug in the
|
|
||||||
bitmap embolderner when the pitch of the source bitmap is
|
|
||||||
*much* larger than its width
|
|
||||||
|
|
||||||
* src/truetype/ttinterp.c: fixing aliasing-related compilation
|
|
||||||
warning
|
|
||||||
|
|
||||||
* builds/unix/install-sh, builds/unix/mkinstalldirs: Updated from
|
* builds/unix/install-sh, builds/unix/mkinstalldirs: Updated from
|
||||||
`automake' CVS module from sources.redhat.com.
|
`automake' CVS module from sources.redhat.com.
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
/* FreeType utility functions for converting 1bpp, 2bpp, 4bpp, and 8bpp */
|
/* FreeType utility functions for converting 1bpp, 2bpp, 4bpp, and 8bpp */
|
||||||
/* bitmaps into 8bpp format (body). */
|
/* bitmaps into 8bpp format (body). */
|
||||||
/* */
|
/* */
|
||||||
/* Copyright 2004, 2005, 2006 by */
|
/* Copyright 2004, 2005, 2006, 2007 by */
|
||||||
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
|
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
|
||||||
/* */
|
/* */
|
||||||
/* This file is part of the FreeType project, and may only be used, */
|
/* This file is part of the FreeType project, and may only be used, */
|
||||||
|
@ -173,6 +173,7 @@
|
||||||
{
|
{
|
||||||
FT_Int len = ( width + ppb - 1 ) / ppb;
|
FT_Int len = ( width + ppb - 1 ) / ppb;
|
||||||
|
|
||||||
|
|
||||||
for ( i = 0; i < bitmap->rows; i++ )
|
for ( i = 0; i < bitmap->rows; i++ )
|
||||||
FT_MEM_COPY( buffer + new_pitch * ( ypixels + i ),
|
FT_MEM_COPY( buffer + new_pitch * ( ypixels + i ),
|
||||||
bitmap->buffer + pitch * i, len );
|
bitmap->buffer + pitch * i, len );
|
||||||
|
@ -181,6 +182,7 @@
|
||||||
{
|
{
|
||||||
FT_Int len = ( width + ppb - 1 ) / ppb;
|
FT_Int len = ( width + ppb - 1 ) / ppb;
|
||||||
|
|
||||||
|
|
||||||
for ( i = 0; i < bitmap->rows; i++ )
|
for ( i = 0; i < bitmap->rows; i++ )
|
||||||
FT_MEM_COPY( buffer + new_pitch * i,
|
FT_MEM_COPY( buffer + new_pitch * i,
|
||||||
bitmap->buffer + pitch * i, len );
|
bitmap->buffer + pitch * i, len );
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
/* */
|
/* */
|
||||||
/* TrueType bytecode interpreter (body). */
|
/* TrueType bytecode interpreter (body). */
|
||||||
/* */
|
/* */
|
||||||
/* Copyright 1996-2001, 2002, 2003, 2004, 2005, 2006 by */
|
/* Copyright 1996-2001, 2002, 2003, 2004, 2005, 2006, 2007 by */
|
||||||
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
|
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
|
||||||
/* */
|
/* */
|
||||||
/* This file is part of the FreeType project, and may only be used, */
|
/* This file is part of the FreeType project, and may only be used, */
|
||||||
|
|
Loading…
Reference in New Issue