Lines Matching refs:cursor
206 struct fb_cursor cursor;
219 cursor.set = 0;
228 cursor.set |= FB_CUR_SETIMAGE;
248 cursor.set |= FB_CUR_SETCMAP;
256 cursor.set |= FB_CUR_SETSIZE;
267 cursor.set |= FB_CUR_SETPOS;
272 ops->cursor_state.hot.x = cursor.hot.y = 0;
273 cursor.set |= FB_CUR_SETHOT;
276 if (cursor.set & FB_CUR_SETSIZE ||
299 cursor.set |= FB_CUR_SETSHAPE;
336 cursor.image.data = src;
337 cursor.image.fg_color = ops->cursor_state.image.fg_color;
338 cursor.image.bg_color = ops->cursor_state.image.bg_color;
339 cursor.image.dx = ops->cursor_state.image.dx;
340 cursor.image.dy = ops->cursor_state.image.dy;
341 cursor.image.height = ops->cursor_state.image.height;
342 cursor.image.width = ops->cursor_state.image.width;
343 cursor.hot.x = ops->cursor_state.hot.x;
344 cursor.hot.y = ops->cursor_state.hot.y;
345 cursor.mask = ops->cursor_state.mask;
346 cursor.enable = ops->cursor_state.enable;
347 cursor.image.depth = 1;
348 cursor.rop = ROP_XOR;
351 err = info->fbops->fb_cursor(info, &cursor);
354 soft_cursor(info, &cursor);
382 ops->cursor = cw_cursor;