Changeset 510
- Timestamp:
- 10/29/09 18:49:40 (3 weeks ago)
- Files:
-
- 1 modified
-
ImageMagick/trunk/filters/boost.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ImageMagick/trunk/filters/boost.c
r503 r510 13 13 % Software Design % 14 14 % John Cristy % 15 % December 1998%15 % November 2009 % 16 16 % % 17 17 % % … … 31 31 % % 32 32 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 33 % 34 % Boost certain algorithms by executing in concert across heterogeneous 35 % platforms consisting of CPUs, GPUs, and other processors (in development). 33 36 % 34 37 */ … … 76 79 const char **argv,ExceptionInfo *exception) 77 80 { 78 (void) images; 81 assert(images != (Image **) NULL); 82 assert(*images != (Image *) NULL); 83 assert((*images)->signature == MagickSignature); 84 #if !defined(MAGICKCORE_OPENCL_SUPPORT) 79 85 (void) argc; 80 86 (void) argv; 81 (void) exception; 87 (void) ThrowMagickException(exception,GetMagickModule(),MissingDelegateError, 88 "DelegateLibrarySupportNotBuiltIn","`%s' (OpenCL)",(*images)->filename); 89 #else 90 { 91 Image 92 *image; 93 94 (void) argc; 95 (void) argv; 96 (void) exception; 97 } 98 #endif 82 99 return(MagickImageFilterSignature); 83 100 }
