Lines Matching refs:cursor
253 struct fb_cursor cursor;
267 cursor.set = 0;
276 cursor.set |= FB_CUR_SETIMAGE;
296 cursor.set |= FB_CUR_SETCMAP;
304 cursor.set |= FB_CUR_SETSIZE;
315 cursor.set |= FB_CUR_SETPOS;
320 ops->cursor_state.hot.x = cursor.hot.y = 0;
321 cursor.set |= FB_CUR_SETHOT;
324 if (cursor.set & FB_CUR_SETSIZE ||
339 cursor.set |= FB_CUR_SETSHAPE;
376 cursor.image.data = src;
377 cursor.image.fg_color = ops->cursor_state.image.fg_color;
378 cursor.image.bg_color = ops->cursor_state.image.bg_color;
379 cursor.image.dx = ops->cursor_state.image.dx;
380 cursor.image.dy = ops->cursor_state.image.dy;
381 cursor.image.height = ops->cursor_state.image.height;
382 cursor.image.width = ops->cursor_state.image.width;
383 cursor.hot.x = ops->cursor_state.hot.x;
384 cursor.hot.y = ops->cursor_state.hot.y;
385 cursor.mask = ops->cursor_state.mask;
386 cursor.enable = ops->cursor_state.enable;
387 cursor.image.depth = 1;
388 cursor.rop = ROP_XOR;
391 err = info->fbops->fb_cursor(info, &cursor);
394 soft_cursor(info, &cursor);
426 ops->cursor = ud_cursor;