Home | History | Annotate | Download | only in vboxvideo

Lines Matching defs:cursor

407 	 * VirtualBox uses the host windowing system to draw the cursor so
408 * moves are a no-op, we only need to upload new cursor sprites.
421 DRM_WARN("Could not kmap cursor bo, skipping update\n");
562 struct drm_plane *cursor = NULL;
584 cursor = vbox_create_plane(vbox, 1 << i, DRM_PLANE_TYPE_CURSOR);
585 if (IS_ERR(cursor)) {
586 ret = PTR_ERR(cursor);
590 DRM_WARN("VirtualBox host is too old, no cursor support\n");
595 ret = drm_crtc_init_with_planes(dev, &vbox_crtc->base, primary, cursor,
606 if (cursor) {
607 drm_plane_cleanup(cursor);
608 kfree(cursor);