Lines Matching refs:pixels
53 int width, height, pixels, bpp, pixel_size, size, palette_size, yuyv; member
187 image->pixels = image->width * image->height; in image_load_tga()
188 image->size = image->pixels * image->pixel_size; in image_load_tga()
201 for (i = 0; i < image->pixels; i++, p++) { in image_load_tga()
254 yuyv_image->pixels = yuyv_image->width * yuyv_image->height; in image_rgb_to_yuyv()
255 yuyv_image->size = yuyv_image->pixels * yuyv_image->pixel_size; in image_rgb_to_yuyv()
261 while ((count++) < rgb_image->pixels) { in image_rgb_to_yuyv()
290 rgb565_image->pixels = rgb565_image->width * rgb565_image->height; in image_rgb888_to_rgb565()
291 rgb565_image->size = rgb565_image->pixels * rgb565_image->pixel_size; in image_rgb888_to_rgb565()
297 while ((count++) < rgb888_image->pixels) { in image_rgb888_to_rgb565()
423 image->pixels); in image_save_header()