Changeset 532 for ImageMagick/trunk/coders
- Timestamp:
- 11/03/09 19:03:49 (3 weeks ago)
- Location:
- ImageMagick/trunk/coders
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
ImageMagick/trunk/coders/dpx.c
r404 r532 1156 1156 image_view=AcquireCacheView(image); 1157 1157 #if defined(MAGICKCORE_OPENMP_SUPPORT) && (_OPENMP > 200505) 1158 #pragma omp parallel for s hared(row,status,quantum_type)1158 #pragma omp parallel for schedule(static,1) shared(row,status,quantum_type) 1159 1159 #endif 1160 1160 for (y=0; y < (long) image->rows; y++) -
ImageMagick/trunk/coders/pnm.c
r404 r532 595 595 image_view=AcquireCacheView(image); 596 596 #if defined(MAGICKCORE_OPENMP_SUPPORT) && (_OPENMP > 200505) 597 #pragma omp parallel for s hared(row,status,quantum_type)597 #pragma omp parallel for schedule(static,1) shared(row,status,quantum_type) 598 598 #endif 599 599 for (y=0; y < (long) image->rows; y++) … … 677 677 image_view=AcquireCacheView(image); 678 678 #if defined(MAGICKCORE_OPENMP_SUPPORT) && (_OPENMP > 200505) 679 #pragma omp parallel for s hared(row,status,quantum_type)679 #pragma omp parallel for schedule(static,1) shared(row,status,quantum_type) 680 680 #endif 681 681 for (y=0; y < (long) image->rows; y++) … … 795 795 image_view=AcquireCacheView(image); 796 796 #if defined(MAGICKCORE_OPENMP_SUPPORT) && (_OPENMP > 200505) 797 #pragma omp parallel for s hared(row,status,type)797 #pragma omp parallel for schedule(static,1) shared(row,status,type) 798 798 #endif 799 799 for (y=0; y < (long) image->rows; y++) … … 969 969 image_view=AcquireCacheView(image); 970 970 #if defined(MAGICKCORE_OPENMP_SUPPORT) && (_OPENMP > 200505) 971 #pragma omp parallel for s hared(row,status,quantum_type)971 #pragma omp parallel for schedule(static,1) shared(row,status,quantum_type) 972 972 #endif 973 973 for (y=0; y < (long) image->rows; y++) … … 1212 1212 image_view=AcquireCacheView(image); 1213 1213 #if defined(MAGICKCORE_OPENMP_SUPPORT) && (_OPENMP > 200505) 1214 #pragma omp parallel for s hared(row,status,quantum_type)1214 #pragma omp parallel for schedule(static,1) shared(row,status,quantum_type) 1215 1215 #endif 1216 1216 for (y=0; y < (long) image->rows; y++)
