Revert "[base] Fix bitmap copying where the new pitch is smaller."

This reverts commit c0f1adedcf.
This commit is contained in:
Werner Lemberg 2018-04-22 17:13:50 +02:00
parent c0f1adedcf
commit c2e2a8e5d9
2 changed files with 14 additions and 50 deletions

View File

@ -1,9 +1,3 @@
2018-04-22 Werner Lemberg <wl@gnu.org>
[base] Fix bitmap copying where the new pitch is smaller.
* src/base/ftbitmap.c (ft_bitmap_assure_buffer): Handle it.
2018-04-22 Werner Lemberg <wl@gnu.org>
Another fix for handling invalid format 2 cmaps.

View File

@ -237,35 +237,20 @@
unsigned char* out = buffer;
unsigned char* limit = bitmap->buffer + pitch * bitmap->rows;
unsigned int delta = new_pitch - pitch;
FT_MEM_ZERO( out, new_pitch * ypixels );
out += new_pitch * ypixels;
if ( new_pitch > pitch )
while ( in < limit )
{
unsigned int delta = new_pitch - pitch;
FT_MEM_COPY( out, in, len );
in += pitch;
out += pitch;
while ( in < limit )
{
FT_MEM_COPY( out, in, len );
in += pitch;
out += pitch;
/* we have to zero out the new (unused) pitch bytes */
FT_MEM_ZERO( out, delta );
out += delta;
}
}
else
{
while ( in < limit )
{
FT_MEM_COPY( out, in, len );
in += pitch;
out += new_pitch;
}
FT_MEM_ZERO( out, delta );
out += delta;
}
}
else
@ -276,32 +261,17 @@
unsigned char* out = buffer;
unsigned char* limit = bitmap->buffer + pitch * bitmap->rows;
unsigned int delta = new_pitch - pitch;
if ( new_pitch > pitch )
while ( in < limit )
{
unsigned int delta = new_pitch - pitch;
FT_MEM_COPY( out, in, len );
in += pitch;
out += pitch;
while ( in < limit )
{
FT_MEM_COPY( out, in, len );
in += pitch;
out += pitch;
/* we have to zero out the new (unused) pitch bytes */
FT_MEM_ZERO( out, delta );
out += delta;
}
}
else
{
while ( in < limit )
{
FT_MEM_COPY( out, in, len );
in += pitch;
out += new_pitch;
}
FT_MEM_ZERO( out, delta );
out += delta;
}
FT_MEM_ZERO( out, new_pitch * ypixels );