]> granicus.if.org Git - imagemagick/commitdiff
(no commit message)
authorcristy <urban-warrior@git.imagemagick.org>
Wed, 17 Jun 2015 11:14:12 +0000 (11:14 +0000)
committercristy <urban-warrior@git.imagemagick.org>
Wed, 17 Jun 2015 11:14:12 +0000 (11:14 +0000)
MagickCore/accelerate.h
MagickCore/draw.h
MagickCore/image.h
MagickCore/monitor-private.h

index 9b6f4c4e50742b2c83667145f77214c2404b0e2a..e2ddbdb704875fc60cfaa23f3d94bdfad3f5a455 100644 (file)
@@ -30,10 +30,11 @@ extern "C" {
 
 extern MagickExport MagickBooleanType
   AccelerateCompositeImage(Image *,const ChannelType,const CompositeOperator,
-    const Image *,const ssize_t,const ssize_t,const float,const float,ExceptionInfo *),
+    const Image *,const ssize_t,const ssize_t,const float,const float,
+    ExceptionInfo *),
   AccelerateContrastImage(Image *,const MagickBooleanType,ExceptionInfo *),
-  AccelerateContrastStretchImageChannel(Image *, const ChannelType, const double, const double, 
-    ExceptionInfo*),
+  AccelerateContrastStretchImageChannel(Image *, const ChannelType,
+    const double,const double,ExceptionInfo*),
   AccelerateEqualizeImage(Image *,const ChannelType,ExceptionInfo *),
   AccelerateFunctionImage(Image *,const ChannelType,const MagickFunction,
     const size_t,const double *,ExceptionInfo *),
index 5d9c600e903a44acc2a3c02253b83703f542bfb3..ffdc7eb020e8ee2ddda44667a897f01614b90c57 100644 (file)
@@ -166,14 +166,14 @@ typedef struct _GradientInfo
   MagickBooleanType
     debug;
 
-  size_t
-    signature;
-
   PointInfo
     center;
 
   double
     radius;
+
+  size_t
+    signature;
 } GradientInfo;
 
 typedef struct _ElementReference
@@ -187,12 +187,12 @@ typedef struct _ElementReference
   GradientInfo
     gradient;
 
-  size_t
-    signature;
-
   struct _ElementReference
     *previous,
     *next;
+
+  size_t
+    signature;
 } ElementReference;
 
 typedef struct _DrawInfo
index 7b87a386c2fc8d1d7a6d7284c1d410f5b8a5d950..d96dc9aaa5a6d63c37b9d4d43a10dd23670da6b0 100644 (file)
@@ -358,12 +358,12 @@ struct _Image
     signature;
 };
 
-/* ImageInfo structure
- * Stores an image list, as well as all global settings used by
- * all images held, -- unless overridden for that specific image.
- * See SyncImagesettings() which maps any global setting that always
* overrides specific image settings.
- */
+/*
+  ImageInfo structure:
+    Stores an image list, as well as all global settings used by all images
+    held, -- unless overridden for that specific image.  See SyncImagesettings()
   which maps any global setting that always overrides specific image settings.
+*/
 struct _ImageInfo
 {
   CompressionType
index e6560235bb8318d1a057088a635926b46827784a..601b8f563c422de21cfb732f2bd8594138906984 100644 (file)
@@ -32,7 +32,8 @@ static inline MagickBooleanType SetImageProgress(const Image *image,
 
   if (image->progress_monitor == (MagickProgressMonitor) NULL)
     return(MagickTrue);
-  (void) FormatLocaleString(message,MagickPathExtent,"%s/%s",tag,image->filename);
+  (void) FormatLocaleString(message,MagickPathExtent,"%s/%s",tag,
+    image->filename);
   return(image->progress_monitor(message,offset,extent,image->client_data));
 }