Lines Matching refs:cursor_state

256 	if (ops->cursor_state.image.data != src ||  in bit_cursor()
258 ops->cursor_state.image.data = src; in bit_cursor()
274 if (ops->cursor_state.image.fg_color != fg || in bit_cursor()
275 ops->cursor_state.image.bg_color != bg || in bit_cursor()
277 ops->cursor_state.image.fg_color = fg; in bit_cursor()
278 ops->cursor_state.image.bg_color = bg; in bit_cursor()
282 if ((ops->cursor_state.image.dx != (vc->vc_font.width * vc->state.x)) || in bit_cursor()
283 (ops->cursor_state.image.dy != (vc->vc_font.height * y)) || in bit_cursor()
285 ops->cursor_state.image.dx = vc->vc_font.width * vc->state.x; in bit_cursor()
286 ops->cursor_state.image.dy = vc->vc_font.height * y; in bit_cursor()
290 if (ops->cursor_state.image.height != vc->vc_font.height || in bit_cursor()
291 ops->cursor_state.image.width != vc->vc_font.width || in bit_cursor()
293 ops->cursor_state.image.height = vc->vc_font.height; in bit_cursor()
294 ops->cursor_state.image.width = vc->vc_font.width; in bit_cursor()
298 if (ops->cursor_state.hot.x || ops->cursor_state.hot.y || in bit_cursor()
300 ops->cursor_state.hot.x = cursor.hot.y = 0; in bit_cursor()
306 ops->cursor_state.mask == NULL || in bit_cursor()
315 kfree(ops->cursor_state.mask); in bit_cursor()
316 ops->cursor_state.mask = mask; in bit_cursor()
350 ops->cursor_state.enable = enable && !use_sw; in bit_cursor()
353 cursor.image.fg_color = ops->cursor_state.image.fg_color; in bit_cursor()
354 cursor.image.bg_color = ops->cursor_state.image.bg_color; in bit_cursor()
355 cursor.image.dx = ops->cursor_state.image.dx; in bit_cursor()
356 cursor.image.dy = ops->cursor_state.image.dy; in bit_cursor()
357 cursor.image.height = ops->cursor_state.image.height; in bit_cursor()
358 cursor.image.width = ops->cursor_state.image.width; in bit_cursor()
359 cursor.hot.x = ops->cursor_state.hot.x; in bit_cursor()
360 cursor.hot.y = ops->cursor_state.hot.y; in bit_cursor()
361 cursor.mask = ops->cursor_state.mask; in bit_cursor()
362 cursor.enable = ops->cursor_state.enable; in bit_cursor()