Lines Matching defs:next_image

7179           CoderError,"Linked list is corrupted; next_image is NULL","`%s'",
7268 *next_image,
7278 next_image=CoalesceImages(image,exception);
7280 if (next_image == (Image *) NULL)
7284 image=next_image;
7286 for (next=image; next != (Image *) NULL; next=next_image)
7293 next_image=GetNextImageInList(next);
7295 if (next_image == (Image *) NULL)
7301 next_image->previous=GetPreviousImageInList(next);
7303 image=next_image;
7305 next->previous->next=next_image;
12864 *next_image;
13062 for (next_image=image; next_image != (Image *) NULL; )
13066 if ((next_image->columns+next_image->page.x) > mng_info->page.width)
13067 mng_info->page.width=next_image->columns+next_image->page.x;
13069 if ((next_image->rows+next_image->page.y) > mng_info->page.height)
13070 mng_info->page.height=next_image->rows+next_image->page.y;
13073 if (next_image->page.x || next_image->page.y)
13076 if (next_image->alpha_trait != UndefinedPixelTrait)
13079 if ((int) next_image->dispose >= BackgroundDispose)
13080 if ((next_image->alpha_trait != UndefinedPixelTrait) ||
13081 next_image->page.x || next_image->page.y ||
13082 ((next_image->columns < mng_info->page.width) &&
13083 (next_image->rows < mng_info->page.height)))
13086 if (next_image->iterations)
13089 final_delay=next_image->delay;
13092 next_image->ticks_per_second)
13107 mng_info->equal_palettes=PalettesAreEqual(image,next_image);
13113 if (GetNextImageInList(next_image) != (Image *) NULL)
13115 if (next_image->background_color.red !=
13116 next_image->next->background_color.red ||
13117 next_image->background_color.green !=
13118 next_image->next->background_color.green ||
13119 next_image->background_color.blue !=
13120 next_image->next->background_color.blue)
13123 if (next_image->gamma != next_image->next->gamma)
13126 if (next_image->rendering_intent !=
13127 next_image->next->rendering_intent)
13130 if ((next_image->units != next_image->next->units) ||
13131 (next_image->resolution.x != next_image->next->resolution.x) ||
13132 (next_image->resolution.y != next_image->next->resolution.y))
13137 if (next_image->chromaticity.red_primary.x !=
13138 next_image->next->chromaticity.red_primary.x ||
13139 next_image->chromaticity.red_primary.y !=
13140 next_image->next->chromaticity.red_primary.y ||
13141 next_image->chromaticity.green_primary.x !=
13142 next_image->next->chromaticity.green_primary.x ||
13143 next_image->chromaticity.green_primary.y !=
13144 next_image->next->chromaticity.green_primary.y ||
13145 next_image->chromaticity.blue_primary.x !=
13146 next_image->next->chromaticity.blue_primary.x ||
13147 next_image->chromaticity.blue_primary.y !=
13148 next_image->next->chromaticity.blue_primary.y ||
13149 next_image->chromaticity.white_point.x !=
13150 next_image->next->chromaticity.white_point.x ||
13151 next_image->chromaticity.white_point.y !=
13152 next_image->next->chromaticity.white_point.y)
13157 next_image=GetNextImageInList(next_image);