Merge pull request #94 from olt/gil_image_fill

Release GIL during Image.fill
This commit is contained in:
Alex Clark ☺ 2013-03-12 03:40:18 -07:00
commit 88e724c8d8

View File

@ -24,6 +24,7 @@ Imaging
ImagingFill(Imaging im, const void* colour)
{
int x, y;
ImagingSectionCookie cookie;
if (im->type == IMAGING_TYPE_SPECIAL) {
/* use generic API */
@ -39,6 +40,7 @@ ImagingFill(Imaging im, const void* colour)
memset(im->image[y], 0, im->linesize);
}
} else {
ImagingSectionEnter(&cookie);
INT32 c = 0L;
memcpy(&c, colour, im->pixelsize);
if (im->image32 && c != 0L) {
@ -50,6 +52,7 @@ ImagingFill(Imaging im, const void* colour)
for (y = 0; y < im->ysize; y++)
memset(im->image[y], cc, im->linesize);
}
ImagingSectionLeave(&cookie);
}
return im;