Home
last modified time | relevance | path

Searched refs:next_image (Results 1 – 9 of 9) 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()
179 (void) SetImageProperty(next_image,"label",label,exception); in ReadVIDImage()
183 "geometry: %.20gx%.20g",(double) next_image->columns,(double) in ReadVIDImage()
184 next_image->rows); in ReadVIDImage()
185 SetGeometry(next_image,&geometry); in ReadVIDImage()
188 thumbnail_image=ThumbnailImage(next_image,geometry.width,geometry.height, in ReadVIDImage()
192 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.c2692 const Image *next_image,const CompressionType compression, in WriteCompressionStart() argument
2706 for (y=0; y < (ssize_t) next_image->rows; y++) in WriteCompressionStart()
2719 const ImageInfo *image_info,Image *image,Image *next_image, in WritePSDChannel() argument
2767 count+=WriteCompressionStart(psd_info,image,next_image,compression,1); in WritePSDChannel()
2769 if (next_image->depth > 8) in WritePSDChannel()
2770 next_image->depth=16; in WritePSDChannel()
2773 quantum_info=AcquireQuantumInfo(image_info,next_image); in WritePSDChannel()
2801 for (y=0; y < (ssize_t) next_image->rows; y++) in WritePSDChannel()
2803 p=GetVirtualPixels(next_image,0,y,next_image->columns,1,exception); in WritePSDChannel()
2806 length=ExportQuantumPixels(next_image,(CacheView *) NULL,quantum_info, in WritePSDChannel()
[all …]
Dxps.c120 *next_image; in ReadXPSImage() local
341 next_image=SyncNextImageInList(image); in ReadXPSImage()
342 if (next_image != (Image *) NULL) in ReadXPSImage()
343 image=next_image; in ReadXPSImage()
344 } while (next_image != (Image *) NULL); in ReadXPSImage()
Dpng.c7662 *next_image, in ReadOneMNGImage() local
7673 next_image=CoalesceImages(image,exception); in ReadOneMNGImage()
7675 if (next_image == (Image *) NULL) in ReadOneMNGImage()
7679 image=next_image; in ReadOneMNGImage()
7681 for (next=image; next != (Image *) NULL; next=next_image) in ReadOneMNGImage()
7688 next_image=GetNextImageInList(next); in ReadOneMNGImage()
7690 if (next_image == (Image *) NULL) in ReadOneMNGImage()
7696 next_image->previous=GetPreviousImageInList(next); in ReadOneMNGImage()
7698 image=next_image; in ReadOneMNGImage()
7700 next->previous->next=next_image; in ReadOneMNGImage()
[all …]
Dpcl.c166 *next_image; in ReadPCLImage() local
384 next_image=SyncNextImageInList(image); in ReadPCLImage()
385 if (next_image != (Image *) NULL) in ReadPCLImage()
386 image=next_image; in ReadPCLImage()
387 } while (next_image != (Image *) NULL); in ReadPCLImage()
Dmsl.c3400 *next_image; in MSLStartElement() local
3406 next_image=ReadImage(msl_info->image_info[n],exception); in MSLStartElement()
3408 if (next_image == (Image *) NULL) in MSLStartElement()
3411 msl_info->image[n]=next_image; in MSLStartElement()
3423 next_image->previous=p; in MSLStartElement()
3424 p->next=next_image; in MSLStartElement()
/external/mesa3d/src/compiler/glsl/
Dlink_uniforms.cpp485 this->next_image = 0; in start_shader()
716 this->next_image, in handle_images()
721 i < MIN2(this->next_image, MAX_IMAGE_UNIFORMS); in handle_images()
934 unsigned next_image; member in parcel_out_uniform_storage
/external/ImageMagick/MagickCore/
Ddisplay.c13614 *next_image, in XVisualDirectoryImage() local
13699 next_image=ReadImage(read_info,exception); in XVisualDirectoryImage()
13701 if (next_image != (Image *) NULL) in XVisualDirectoryImage()
13703 (void) DeleteImageProperty(next_image,"label"); in XVisualDirectoryImage()
13704 (void) SetImageProperty(next_image,"label",InterpretImageProperties( in XVisualDirectoryImage()
13705 read_info,next_image,DefaultTileLabel,exception),exception); in XVisualDirectoryImage()
13706 (void) ParseRegionGeometry(next_image,read_info->size,&geometry, in XVisualDirectoryImage()
13708 thumbnail_image=ThumbnailImage(next_image,geometry.width, in XVisualDirectoryImage()
13712 next_image=DestroyImage(next_image); in XVisualDirectoryImage()
13713 next_image=thumbnail_image; in XVisualDirectoryImage()
[all …]