Home
last modified time | relevance | path

Searched refs:next_image (Results 1 – 8 of 8) sorted by relevance

/external/ImageMagick/coders/
Dvid.c111 *next_image, in ReadVIDImage() local
173 next_image=ReadImage(read_info,exception); in ReadVIDImage()
175 if (next_image == (Image *) NULL) in ReadVIDImage()
177 label=InterpretImageProperties((ImageInfo *) image_info,next_image, in ReadVIDImage()
181 (void) SetImageProperty(next_image,"label",label,exception); in ReadVIDImage()
186 "geometry: %.20gx%.20g",(double) next_image->columns,(double) in ReadVIDImage()
187 next_image->rows); in ReadVIDImage()
188 SetGeometry(next_image,&geometry); in ReadVIDImage()
191 thumbnail_image=ThumbnailImage(next_image,geometry.width,geometry.height, in ReadVIDImage()
195 next_image=DestroyImage(next_image); in ReadVIDImage()
[all …]
Dpwp.c132 *next_image, in ReadPWPImage() local
246 next_image=ReadImage(read_info,exception); in ReadPWPImage()
247 if (next_image == (Image *) NULL) in ReadPWPImage()
249 (void) FormatLocaleString(next_image->filename,MagickPathExtent, in ReadPWPImage()
250 "slide_%02ld.sfw",(long) next_image->scene); in ReadPWPImage()
252 image=next_image; in ReadPWPImage()
259 next_image->previous=p; in ReadPWPImage()
260 next_image->scene=p->scene+1; in ReadPWPImage()
261 p->next=next_image; in ReadPWPImage()
264 if (next_image->scene >= (image_info->scene+image_info->number_scenes-1)) in ReadPWPImage()
Dpsd.c2914 const Image *next_image,const CompressionType compression, in WriteCompressionStart() argument
2928 for (y=0; y < (ssize_t) next_image->rows; y++) in WriteCompressionStart()
2941 const ImageInfo *image_info,Image *image,Image *next_image, in WritePSDChannel() argument
2987 count+=WriteCompressionStart(psd_info,image,next_image,compression,1); in WritePSDChannel()
2989 if (next_image->depth > 8) in WritePSDChannel()
2990 next_image->depth=16; in WritePSDChannel()
2993 quantum_info=AcquireQuantumInfo(image_info,next_image); in WritePSDChannel()
3021 for (y=0; y < (ssize_t) next_image->rows; y++) in WritePSDChannel()
3023 p=GetVirtualPixels(next_image,0,y,next_image->columns,1,exception); in WritePSDChannel()
3026 length=ExportQuantumPixels(next_image,(CacheView *) NULL,quantum_info, in WritePSDChannel()
[all …]
Dpng.c7670 *next_image, in ReadOneMNGImage() local
7681 next_image=CoalesceImages(image,exception); in ReadOneMNGImage()
7683 if (next_image == (Image *) NULL) in ReadOneMNGImage()
7685 image=next_image; in ReadOneMNGImage()
7687 for (next=image; next != (Image *) NULL; next=next_image) in ReadOneMNGImage()
7694 next_image=GetNextImageInList(next); in ReadOneMNGImage()
7696 if (next_image == (Image *) NULL) in ReadOneMNGImage()
7702 next_image->previous=GetPreviousImageInList(next); in ReadOneMNGImage()
7704 image=next_image; in ReadOneMNGImage()
7706 next->previous->next=next_image; in ReadOneMNGImage()
[all …]
Dpcl.c166 *next_image; in ReadPCLImage() local
396 next_image=SyncNextImageInList(image); in ReadPCLImage()
397 if (next_image != (Image *) NULL) in ReadPCLImage()
398 image=next_image; in ReadPCLImage()
399 } while (next_image != (Image *) NULL); in ReadPCLImage()
Dmsl.c3379 *next_image; in MSLStartElement() local
3385 next_image=ReadImage(msl_info->image_info[n],exception); in MSLStartElement()
3387 if (next_image == (Image *) NULL) in MSLStartElement()
3390 msl_info->image[n]=next_image; in MSLStartElement()
3402 next_image->previous=p; in MSLStartElement()
3403 p->next=next_image; in MSLStartElement()
/external/mesa3d/src/compiler/glsl/
Dlink_uniforms.cpp709 this->next_image = 0; in start_shader()
963 this->next_image, in handle_images()
968 i < MIN2(this->next_image, MAX_IMAGE_UNIFORMS); in handle_images()
1185 unsigned next_image; member in parcel_out_uniform_storage
/external/ImageMagick/MagickCore/
Ddisplay.c13611 *next_image, in XVisualDirectoryImage() local
13696 next_image=ReadImage(read_info,exception); in XVisualDirectoryImage()
13698 if (next_image != (Image *) NULL) in XVisualDirectoryImage()
13700 (void) DeleteImageProperty(next_image,"label"); in XVisualDirectoryImage()
13701 (void) SetImageProperty(next_image,"label",InterpretImageProperties( in XVisualDirectoryImage()
13702 read_info,next_image,DefaultTileLabel,exception),exception); in XVisualDirectoryImage()
13703 (void) ParseRegionGeometry(next_image,read_info->size,&geometry, in XVisualDirectoryImage()
13705 thumbnail_image=ThumbnailImage(next_image,geometry.width, in XVisualDirectoryImage()
13709 next_image=DestroyImage(next_image); in XVisualDirectoryImage()
13710 next_image=thumbnail_image; in XVisualDirectoryImage()
[all …]