Lines Matching refs:cursor
223 struct fb_cursor cursor;
236 cursor.set = 0;
245 cursor.set |= FB_CUR_SETIMAGE;
265 cursor.set |= FB_CUR_SETCMAP;
273 cursor.set |= FB_CUR_SETSIZE;
284 cursor.set |= FB_CUR_SETPOS;
289 ops->cursor_state.hot.x = cursor.hot.y = 0;
290 cursor.set |= FB_CUR_SETHOT;
293 if (cursor.set & FB_CUR_SETSIZE ||
316 cursor.set |= FB_CUR_SETSHAPE;
353 cursor.image.data = src;
354 cursor.image.fg_color = ops->cursor_state.image.fg_color;
355 cursor.image.bg_color = ops->cursor_state.image.bg_color;
356 cursor.image.dx = ops->cursor_state.image.dx;
357 cursor.image.dy = ops->cursor_state.image.dy;
358 cursor.image.height = ops->cursor_state.image.height;
359 cursor.image.width = ops->cursor_state.image.width;
360 cursor.hot.x = ops->cursor_state.hot.x;
361 cursor.hot.y = ops->cursor_state.hot.y;
362 cursor.mask = ops->cursor_state.mask;
363 cursor.enable = ops->cursor_state.enable;
364 cursor.image.depth = 1;
365 cursor.rop = ROP_XOR;
368 err = info->fbops->fb_cursor(info, &cursor);
371 soft_cursor(info, &cursor);
399 ops->cursor = ccw_cursor;