Lines Matching refs:image
28 struct fb_image *image; in soft_cursor() local
34 s_pitch = (cursor->image.width + 7) >> 3; in soft_cursor()
35 dsize = s_pitch * cursor->image.height; in soft_cursor()
50 image = (struct fb_image *)ops->cursor_src; in soft_cursor()
51 *image = cursor->image; in soft_cursor()
54 size = d_pitch * image->height + buf_align; in soft_cursor()
62 src[i] = image->data[i] ^ cursor->mask[i]; in soft_cursor()
67 src[i] = image->data[i] & cursor->mask[i]; in soft_cursor()
71 memcpy(src, image->data, dsize); in soft_cursor()
73 fb_pad_aligned_buffer(dst, d_pitch, src, s_pitch, image->height); in soft_cursor()
74 image->data = dst; in soft_cursor()
75 info->fbops->fb_imageblit(info, image); in soft_cursor()