From: cristy Date: Thu, 24 Jan 2013 12:28:39 +0000 (+0000) Subject: (no commit message) X-Git-Tag: 7.0.1-0~4364 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=17028dccbf579855c1805d9e62561ad83104bb56;p=imagemagick --- diff --git a/MagickCore/composite.c b/MagickCore/composite.c index 47597e615..2a7c727fc 100644 --- a/MagickCore/composite.c +++ b/MagickCore/composite.c @@ -414,11 +414,13 @@ static MagickBooleanType CompositeOverImage(Image *image, } for (x=0; x < (ssize_t) image->columns; x++) { + double + gamma; + MagickRealType alpha, Da, Dc, - gamma, Sa, Sc; @@ -1276,12 +1278,14 @@ MagickExport MagickBooleanType CompositeImage(Image *image, GetPixelInfo(composite_image,&source_pixel); for (x=0; x < (ssize_t) image->columns; x++) { + double + gamma; + MagickRealType alpha, Da, Dc, Dca, - gamma, Sa, Sc, Sca; diff --git a/MagickCore/morphology.c b/MagickCore/morphology.c index 2b4e8abdb..c7e5b0167 100644 --- a/MagickCore/morphology.c +++ b/MagickCore/morphology.c @@ -2761,8 +2761,11 @@ static ssize_t MorphologyPrimitive(const Image *image,Image *morphology_image, ** transparent pixels are not part of the results. */ double - alpha, /* alpha weighting for colors : alpha */ gamma; /* divisor, sum of color alpha weighting */ + + MagickRealType + alpha; /* alpha weighting for colors : alpha */ + size_t count; /* alpha valus collected, number kernel values */ @@ -2994,8 +2997,11 @@ static ssize_t MorphologyPrimitive(const Image *image,Image *morphology_image, ** transparent pixels are not part of the results. */ double - alpha, /* alpha weighting for colors : alpha */ gamma; /* divisor, sum of color alpha weighting */ + + MagickRealType + alpha; /* alpha weighting for colors : alpha */ + size_t count; /* alpha valus collected, number kernel values */