Lines Matching defs:image
77 nv04_fbcon_imageblit(struct fb_info *info, const struct fb_image *image)
86 uint32_t *data = (uint32_t *)image->data;
89 if (image->depth != 1)
98 fg = ((uint32_t *) info->pseudo_palette)[image->fg_color];
99 bg = ((uint32_t *) info->pseudo_palette)[image->bg_color];
101 fg = image->fg_color;
102 bg = image->bg_color;
105 PUSH_NVSQ(push, NV04A, 0x0be4, (image->dy << 16) | (image->dx & 0xffff),
106 0x0be8, ((image->dy + image->height) << 16) |
107 ((image->dx + image->width) & 0xffff),
110 0x0bf4, (image->height << 16) | ALIGN(image->width, 8),
111 0x0bf8, (image->height << 16) | image->width,
112 0x0bfc, (image->dy << 16) | (image->dx & 0xffff));
114 dsize = ALIGN(ALIGN(image->width, 8) * image->height, 32) >> 5;