]> granicus.if.org Git - imagemagick/commitdiff
(no commit message)
authorcristy <urban-warrior@git.imagemagick.org>
Sat, 26 Jun 2010 20:27:18 +0000 (20:27 +0000)
committercristy <urban-warrior@git.imagemagick.org>
Sat, 26 Jun 2010 20:27:18 +0000 (20:27 +0000)
magick/image-view.c
wand/wand-view.c

index ed94b046a39d1984b3d80f5a14e416c6c970c53b..c2b476832fc01c92f31684c7f0fa08e761992b30 100644 (file)
@@ -178,7 +178,7 @@ MagickExport ImageView *DestroyImageView(ImageView *pixel_view)
 %  canvas-- that is no negative offsets or widths or heights that exceed the
 %  image dimension are permitted.
 %
-%  Use this pragma:
+%  Use this pragma if the view is not single threaded:
 %
 %    #pragma omp critical
 %
@@ -449,7 +449,7 @@ MagickExport size_t GetImageViewHeight(const ImageView *pixel_view)
 %  or widths or heights that exceed the image dimension.  Any updates to
 %  the pixels in your callback are ignored.
 %
-%  Use this pragma:
+%  Use this pragma if the view is not single threaded:
 %
 %    #pragma omp critical
 %
@@ -843,7 +843,7 @@ MagickExport ImageView *NewImageViewRegion(Image *image,const ssize_t x,
 %  undefined and any settings you make in the callback method are automagically
 %  synced back to your image.
 %
-%  Use this pragma:
+%  Use this pragma if the view is not single threaded:
 %
 %    #pragma omp critical
 %
@@ -975,7 +975,7 @@ MagickExport MagickBooleanType SetImageViewIterator(ImageView *destination,
 %  is no negative offsets or widths or heights that exceed the image dimension
 %  are permitted.
 %
-%  Use this pragma:
+%  Use this pragma if the view is not single threaded:
 %
 %    #pragma omp critical
 %
@@ -1137,7 +1137,7 @@ MagickExport MagickBooleanType TransferImageViewIterator(ImageView *source,
 %  heights that exceed the image dimension are permitted.  Updates to pixels
 %  in your callback are automagically synced back to the image.
 %
-%  Use this pragma:
+%  Use this pragma if the view is not single threaded:
 %
 %    #pragma omp critical
 %
index a9ff9c3b6bdba8747eb0b066641a43b2eeaa9d00..5d6a4263ab282652bce427bb365dee6e5f08dcb5 100644 (file)
@@ -2,11 +2,11 @@
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 %                                                                             %
 %                                                                             %
-%                         W   W   AAA   N   N  DDDD                           %
-%                         W   W  A   A  NN  N  D   D                          %
-%                         W W W  AAAAA  N N N  D   D                          %
-%                         WW WW  A   A  N  NN  D   D                          %
-%                         W   W  A   A  N   N  DDDD                           %
+%                        W   W   AAA   N   N  DDDD                            %
+%                        W   W  A   A  NN  N  D   D                           %
+%                        W W W  AAAAA  N N N  D   D                           %
+%                        WW WW  A   A  N  NN  D   D                           %
+%                        W   W  A   A  N   N  DDDD                            %
 %                                                                             %
 %                        V   V  IIIII  EEEEE  W   W                           %
 %                        V   V    I    E      W   W                           %
@@ -224,7 +224,7 @@ WandExport WandView *DestroyWandView(WandView *pixel_view)
 %  canvas-- that is no negative offsets or widths or heights that exceed the
 %  image dimension are permitted.
 %
-%  Use this pragma:
+%  Use this pragma if the view is not single threaded:
 %
 %    #pragma omp critical
 %
@@ -250,9 +250,9 @@ WandExport WandView *DestroyWandView(WandView *pixel_view)
 %    o context: the user defined context.
 %
 */
-WandExport MagickBooleanType DuplexTransferWandViewIterator(
-  WandView *source,WandView *duplex,WandView *destination,
-  DuplexTransferWandViewMethod transfer,void *context)
+WandExport MagickBooleanType DuplexTransferWandViewIterator(WandView *source,
+  WandView *duplex,WandView *destination,DuplexTransferWandViewMethod transfer,
+  void *context)
 {
 #define DuplexTransferWandViewTag  "WandView/DuplexTransfer"
 
@@ -502,7 +502,7 @@ WandExport size_t GetWandViewHeight(const WandView *pixel_view)
 %  or widths or heights that exceed the image dimension.  Any updates to
 %  the pixels in your callback are ignored.
 %
-%  Use this pragma:
+%  Use this pragma if the view is not single threaded:
 %
 %    #pragma omp critical
 %
@@ -944,7 +944,7 @@ WandExport WandView *NewWandViewRegion(MagickWand *wand,const ssize_t x,
 %  undefined and any settings you make in the callback method are automagically
 %  synced back to your image.
 %
-%  Use this pragma:
+%  Use this pragma if the view is not single threaded:
 %
 %    #pragma omp critical
 %
@@ -1076,7 +1076,7 @@ WandExport MagickBooleanType SetWandViewIterator(WandView *destination,
 %  is no negative offsets or widths or heights that exceed the image dimension
 %  are permitted.
 %
-%  Use this pragma:
+%  Use this pragma if the view is not single threaded:
 %
 %    #pragma omp critical
 %
@@ -1240,7 +1240,7 @@ WandExport MagickBooleanType TransferWandViewIterator(WandView *source,
 %  heights that exceed the image dimension are permitted.  Updates to pixels
 %  in your callback are automagically synced back to the image.
 %
-%  Use this pragma:
+%  Use this pragma if the view is not single threaded:
 %
 %    #pragma omp critical
 %