[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20231023074613.41327-6-aesteve@redhat.com>
Date: Mon, 23 Oct 2023 09:46:09 +0200
From: Albert Esteve <aesteve@...hat.com>
To: qemu-devel@...gnu.org
Cc: zackr@...are.com, contact@...rsion.fr, linux-doc@...r.kernel.org,
dri-devel@...ts.freedesktop.org,
Maxime Ripard <mripard@...nel.org>, iforbes@...are.com,
Maarten Lankhorst <maarten.lankhorst@...ux.intel.com>,
Chia-I Wu <olvaffe@...il.com>,
Thomas Zimmermann <tzimmermann@...e.de>,
Hans de Goede <hdegoede@...hat.com>,
Matt Roper <matthew.d.roper@...el.com>,
David Airlie <airlied@...il.com>, banackm@...are.com,
Rob Clark <robdclark@...il.com>, javierm@...hat.com,
krastevm@...are.com, spice-devel@...ts.freedesktop.org,
Gurchetan Singh <gurchetansingh@...omium.org>,
Jonathan Corbet <corbet@....net>,
David Airlie <airlied@...hat.com>,
virtualization@...ts.linux-foundation.org,
linux-kernel@...r.kernel.org, mombasawalam@...are.com,
Daniel Vetter <daniel@...ll.ch>, ppaalanen@...il.com,
VMware Graphics Reviewers
<linux-graphics-maintainer@...are.com>,
Gerd Hoffmann <kraxel@...hat.com>,
David Airlie <airlied@...ux.ie>
Subject: [PATCH v6 5/9] drm/vboxvideo: Use the hotspot properties from cursor planes
From: Zack Rusin <zackr@...are.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@...are.com>
Cc: Hans de Goede <hdegoede@...hat.com>
Cc: David Airlie <airlied@...ux.ie>
Cc: Daniel Vetter <daniel@...ll.ch>
Reviewed-by: Javier Martinez Canillas <javierm@...hat.com>
---
drivers/gpu/drm/vboxvideo/vbox_mode.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/vboxvideo/vbox_mode.c b/drivers/gpu/drm/vboxvideo/vbox_mode.c
index 341edd982cb3b..9ff3bade97957 100644
--- a/drivers/gpu/drm/vboxvideo/vbox_mode.c
+++ b/drivers/gpu/drm/vboxvideo/vbox_mode.c
@@ -429,8 +429,8 @@ static void vbox_cursor_atomic_update(struct drm_plane *plane,
flags = VBOX_MOUSE_POINTER_VISIBLE | VBOX_MOUSE_POINTER_SHAPE |
VBOX_MOUSE_POINTER_ALPHA;
hgsmi_update_pointer_shape(vbox->guest_pool, flags,
- min_t(u32, max(fb->hot_x, 0), width),
- min_t(u32, max(fb->hot_y, 0), height),
+ min_t(u32, max(new_state->hotspot_x, 0), width),
+ min_t(u32, max(new_state->hotspot_y, 0), height),
width, height, vbox->cursor_data, data_size);
mutex_unlock(&vbox->hw_mutex);
--
2.41.0
Powered by blists - more mailing lists