Lines Matching defs:image
511 static void pm3fb_imageblit(struct fb_info *info, const struct fb_image *image)
514 u32 height = image->height;
516 const u32 *src = (const u32 *)image->data;
521 cfb_imageblit(info, image);
526 fgx = image->fg_color;
527 bgx = image->bg_color;
531 fgx = par->palette[image->fg_color];
532 bgx = par->palette[image->bg_color];
535 if (image->depth != 1) {
536 cfb_imageblit(info, image);
563 ((image->dy & 0x0fff) << 16) | (image->dx & 0x0fff));
565 (((image->dy + image->height) & 0x0fff) << 16) |
566 ((image->dx + image->width) & 0x0fff));
568 PM3RectanglePosition_XOffset(image->dx) |
569 PM3RectanglePosition_YOffset(image->dy));
575 PM3Render2D_Width(image->width) |
576 PM3Render2D_Height(image->height));
580 int width = ((image->width + 7) >> 3)
621 if (cursor->image.width > 64 ||
622 cursor->image.height > 64 ||
623 cursor->image.depth > 1)
641 int x = cursor->image.dx - info->var.xoffset;
642 int y = cursor->image.dy - info->var.yoffset;
658 u32 fg_idx = cursor->image.fg_color;
659 u32 bg_idx = cursor->image.bg_color;
679 u8 *bitmap = (u8 *)cursor->image.data;
684 for (i = 0; i < cursor->image.height; i++) {
685 int j = (cursor->image.width + 7) >> 3;