Lines Matching defs:cursor
409 * VirtualBox uses the host windowing system to draw the cursor so
410 * moves are a no-op, we only need to upload new cursor sprites.
553 struct drm_plane *cursor = NULL;
575 cursor = vbox_create_plane(vbox, 1 << i, DRM_PLANE_TYPE_CURSOR);
576 if (IS_ERR(cursor)) {
577 ret = PTR_ERR(cursor);
581 DRM_WARN("VirtualBox host is too old, no cursor support\n");
586 ret = drm_crtc_init_with_planes(dev, &vbox_crtc->base, primary, cursor,
597 if (cursor) {
598 drm_plane_cleanup(cursor);
599 kfree(cursor);