mirror of
https://github.com/X11Libre/xf86-video-amdgpu.git
synced 2026-04-14 11:04:42 +00:00
Prefer drmModeSetCursor2 over drmModeSetCursor
The former includes information about the position of the hotspot within the cursor image. Copied from xf86-video-modesetting. (ported from radeon commit c9f8f642fd495937400618a4fc25ecae3f8888fc) Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
committed by
Michel Dänzer
parent
83a47c0ebe
commit
0ddd20600d
@@ -801,12 +801,29 @@ static void drmmode_show_cursor(xf86CrtcPtr crtc)
|
||||
AMDGPUEntPtr pAMDGPUEnt = AMDGPUEntPriv(pScrn);
|
||||
drmmode_crtc_private_ptr drmmode_crtc = crtc->driver_private;
|
||||
uint32_t bo_handle;
|
||||
static Bool use_set_cursor2 = TRUE;
|
||||
|
||||
if (!amdgpu_bo_get_handle(drmmode_crtc->cursor_buffer, &bo_handle)) {
|
||||
ErrorF("failed to get BO handle for cursor\n");
|
||||
return;
|
||||
}
|
||||
|
||||
if (use_set_cursor2) {
|
||||
xf86CrtcConfigPtr xf86_config = XF86_CRTC_CONFIG_PTR(crtc->scrn);
|
||||
CursorPtr cursor = xf86_config->cursor;
|
||||
int ret;
|
||||
|
||||
ret = drmModeSetCursor2(pAMDGPUEnt->fd,
|
||||
drmmode_crtc->mode_crtc->crtc_id,
|
||||
bo_handle,
|
||||
info->cursor_w, info->cursor_h,
|
||||
cursor->bits->xhot, cursor->bits->yhot);
|
||||
if (ret == -EINVAL)
|
||||
use_set_cursor2 = FALSE;
|
||||
else
|
||||
return;
|
||||
}
|
||||
|
||||
drmModeSetCursor(pAMDGPUEnt->fd, drmmode_crtc->mode_crtc->crtc_id, bo_handle,
|
||||
info->cursor_w, info->cursor_h);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user