[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v6 6/9] drm/virtio: Use the hotspot properties from cursor planes
|
From: |
Albert Esteve |
|
Subject: |
[PATCH v6 6/9] drm/virtio: Use the hotspot properties from cursor planes |
|
Date: |
Mon, 23 Oct 2023 09:46:10 +0200 |
From: Zack Rusin <zackr@vmware.com>
Atomic modesetting got support for mouse hotspots via the hotspot
properties. Port the legacy kms hotspot handling to the new properties
on cursor planes.
Signed-off-by: Zack Rusin <zackr@vmware.com>
Reviewed-by: Gerd Hoffmann <kraxel@redhat.com>
Cc: David Airlie <airlied@linux.ie>
Cc: Gurchetan Singh <gurchetansingh@chromium.org>
Cc: Chia-I Wu <olvaffe@gmail.com>
Cc: Daniel Vetter <daniel@ffwll.ch>
Cc: virtualization@lists.linux-foundation.org
Reviewed-by: Javier Martinez Canillas <javierm@redhat.com>
---
drivers/gpu/drm/virtio/virtgpu_plane.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/gpu/drm/virtio/virtgpu_plane.c
b/drivers/gpu/drm/virtio/virtgpu_plane.c
index a2e045f3a0004..20de599658c1f 100644
--- a/drivers/gpu/drm/virtio/virtgpu_plane.c
+++ b/drivers/gpu/drm/virtio/virtgpu_plane.c
@@ -323,16 +323,16 @@ static void virtio_gpu_cursor_plane_update(struct
drm_plane *plane,
DRM_DEBUG("update, handle %d, pos +%d+%d, hot %d,%d\n", handle,
plane->state->crtc_x,
plane->state->crtc_y,
- plane->state->fb ? plane->state->fb->hot_x : 0,
- plane->state->fb ? plane->state->fb->hot_y : 0);
+ plane->state->hotspot_x,
+ plane->state->hotspot_y);
output->cursor.hdr.type =
cpu_to_le32(VIRTIO_GPU_CMD_UPDATE_CURSOR);
output->cursor.resource_id = cpu_to_le32(handle);
if (plane->state->fb) {
output->cursor.hot_x =
- cpu_to_le32(plane->state->fb->hot_x);
+ cpu_to_le32(plane->state->hotspot_x);
output->cursor.hot_y =
- cpu_to_le32(plane->state->fb->hot_y);
+ cpu_to_le32(plane->state->hotspot_y);
} else {
output->cursor.hot_x = cpu_to_le32(0);
output->cursor.hot_y = cpu_to_le32(0);
--
2.41.0
- [PATCH v6 0/9] Fix cursor planes with virtualized drivers, Albert Esteve, 2023/10/23
- [PATCH v6 1/9] drm: Disable the cursor plane on atomic contexts with virtualized drivers, Albert Esteve, 2023/10/23
- [PATCH v6 2/9] drm/atomic: Add support for mouse hotspots, Albert Esteve, 2023/10/23
- [PATCH v6 3/9] drm/vmwgfx: Use the hotspot properties from cursor planes, Albert Esteve, 2023/10/23
- [PATCH v6 4/9] drm/qxl: Use the hotspot properties from cursor planes, Albert Esteve, 2023/10/23
- [PATCH v6 6/9] drm/virtio: Use the hotspot properties from cursor planes,
Albert Esteve <=
- [PATCH v6 5/9] drm/vboxvideo: Use the hotspot properties from cursor planes, Albert Esteve, 2023/10/23
- [PATCH v6 8/9] drm: Introduce DRM_CLIENT_CAP_CURSOR_PLANE_HOTSPOT, Albert Esteve, 2023/10/23
- [PATCH v6 9/9] drm: Introduce documentation for hotspot properties, Albert Esteve, 2023/10/23
- [PATCH v6 7/9] drm: Remove legacy cursor hotspot code, Albert Esteve, 2023/10/23
- Re: [PATCH v6 0/9] Fix cursor planes with virtualized drivers, Simon Ser, 2023/10/23