Lines Matching defs:image
104 nv50_fbcon_imageblit(struct fb_info *info, const struct fb_image *image)
110 uint32_t dwords, *data = (uint32_t *)image->data;
115 if (image->depth != 1)
120 bg = palette[image->bg_color] | mask;
121 fg = palette[image->fg_color] | mask;
123 bg = image->bg_color;
124 fg = image->fg_color;
134 PUSH_MTHD(push, NV502D, SET_PIXELS_FROM_CPU_SRC_WIDTH, image->width,
135 SET_PIXELS_FROM_CPU_SRC_HEIGHT, image->height);
138 SET_PIXELS_FROM_CPU_DST_X0_INT, image->dx,
140 SET_PIXELS_FROM_CPU_DST_Y0_INT, image->dy);
142 dwords = ALIGN(ALIGN(image->width, 8) * image->height, 32) >> 5;