Lines Matching defs:cursor
574 struct qxl_cursor cursor;
594 cursor.header.unique = 0;
595 cursor.header.type = SPICE_CURSOR_TYPE_ALPHA;
596 cursor.header.width = 64;
597 cursor.header.height = 64;
598 cursor.header.hot_spot_x = hot_x;
599 cursor.header.hot_spot_y = hot_y;
600 cursor.data_size = size;
601 cursor.chunk.next_chunk = 0;
602 cursor.chunk.prev_chunk = 0;
603 cursor.chunk.data_size = size;
606 &cursor, sizeof(cursor));
607 memcpy_toio(cursor_map.vaddr_iomem + sizeof(cursor),
611 &cursor, sizeof(cursor));
612 memcpy(cursor_map.vaddr + sizeof(cursor),
980 struct drm_plane *primary, *cursor;
994 cursor = qxl_create_plane(qdev, 1 << crtc_id, DRM_PLANE_TYPE_CURSOR);
995 if (IS_ERR(cursor)) {
1000 r = drm_crtc_init_with_planes(dev, &qxl_crtc->base, primary, cursor,
1010 drm_plane_cleanup(cursor);
1011 kfree(cursor);