From: cristy Date: Sat, 26 Jun 2010 20:27:18 +0000 (+0000) Subject: (no commit message) X-Git-Tag: 7.0.1-0~9171 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=58739475eaf89390210048221cd0fb7204e0908f;p=imagemagick --- diff --git a/magick/image-view.c b/magick/image-view.c index ed94b046a..c2b476832 100644 --- a/magick/image-view.c +++ b/magick/image-view.c @@ -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 % diff --git a/wand/wand-view.c b/wand/wand-view.c index a9ff9c3b6..5d6a4263a 100644 --- a/wand/wand-view.c +++ b/wand/wand-view.c @@ -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 %