Lines Matching defs:cursor
390 * VirtualBox uses the host windowing system to draw the cursor so
391 * moves are a no-op, we only need to upload new cursor sprites.
406 DRM_WARN("Could not map cursor bo, skipping update\n");
547 struct drm_plane *cursor = NULL;
569 cursor = vbox_create_plane(vbox, 1 << i, DRM_PLANE_TYPE_CURSOR);
570 if (IS_ERR(cursor)) {
571 ret = PTR_ERR(cursor);
575 DRM_WARN("VirtualBox host is too old, no cursor support\n");
580 ret = drm_crtc_init_with_planes(dev, &vbox_crtc->base, primary, cursor,
591 if (cursor) {
592 drm_plane_cleanup(cursor);
593 kfree(cursor);