Minor.
This commit is contained in:
parent
9154dab815
commit
23c093fc38
|
@ -4107,6 +4107,7 @@
|
|||
|
||||
FT_Bitmap_New( &bitmap );
|
||||
|
||||
/* this also converts the bitmap flow to `down' (i.e., pitch > 0) */
|
||||
err = FT_Bitmap_Convert( library, &slot->bitmap, &bitmap, 1 );
|
||||
if ( !err )
|
||||
{
|
||||
|
|
|
@ -59,7 +59,7 @@
|
|||
|
||||
if ( !decreasing )
|
||||
{
|
||||
writer->line += writer->pitch * ( target->rows-1 );
|
||||
writer->line += writer->pitch * ( target->rows - 1 );
|
||||
writer->pitch = -writer->pitch;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -276,6 +276,7 @@
|
|||
goto DestroyExit;
|
||||
}
|
||||
|
||||
/* this doesn't overflow: 0x7FFF * 0x7FFF * 4 < 2^32 */
|
||||
size = map->rows * map->pitch;
|
||||
|
||||
error = ft_glyphslot_alloc_bitmap( slot, size );
|
||||
|
|
Loading…
Reference in New Issue