Lines Matching refs:cursor
1199 imsttfb_cursor(struct fb_info *info, struct fb_cursor *cursor)
1202 u32 flags = cursor->set, fg, bg, xx, yy;
1204 if (cursor->dest == NULL && cursor->rop == ROP_XOR)
1207 imstt_set_cursor(info, cursor, 0);
1210 xx = cursor->image.dx - info->var.xoffset;
1211 yy = cursor->image.dy - info->var.yoffset;
1218 int fg_idx = cursor->image.fg_color;
1219 int width = (cursor->image.width+7)/8;
1220 u8 *dat = (u8 *) cursor->image.data;
1221 u8 *dst = (u8 *) cursor->dest;
1222 u8 *msk = (u8 *) cursor->mask;
1224 switch (cursor->rop) {
1226 for (i = 0; i < cursor->image.height; i++) {
1238 for (i = 0; i < cursor->image.height; i++) {
1255 if (cursor->enable)
1256 imstt_set_cursor(info, cursor, 1);