* [PATCH] virtio-gpu: update scanout if there is any area covered by the rect
@ 2022-09-09 1:40 Dongwon Kim
2022-09-13 9:45 ` Marc-André Lureau
0 siblings, 1 reply; 2+ messages in thread
From: Dongwon Kim @ 2022-09-09 1:40 UTC (permalink / raw)
To: qemu-devel; +Cc: Dongwon Kim, Gerd Hoffmann
The scanout is currently updated only if the whole rect is inside the
scanout space. This is not a correct condition because the scanout should
be updated even a small area in the scanout space is covered by the rect.
Cc: Gerd Hoffmann <kraxel@redhat.com>
Signed-off-by: Dongwon Kim <dongwon.kim@intel.com>
---
hw/display/virtio-gpu.c | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/hw/display/virtio-gpu.c b/hw/display/virtio-gpu.c
index 20cc703dcc..5e15c79b94 100644
--- a/hw/display/virtio-gpu.c
+++ b/hw/display/virtio-gpu.c
@@ -515,9 +515,10 @@ static void virtio_gpu_resource_flush(VirtIOGPU *g,
for (i = 0; i < g->parent_obj.conf.max_outputs; i++) {
scanout = &g->parent_obj.scanout[i];
if (scanout->resource_id == res->resource_id &&
- rf.r.x >= scanout->x && rf.r.y >= scanout->y &&
- rf.r.x + rf.r.width <= scanout->x + scanout->width &&
- rf.r.y + rf.r.height <= scanout->y + scanout->height &&
+ rf.r.x < scanout->x + scanout->width &&
+ rf.r.x + rf.r.width >= scanout->x &&
+ rf.r.y < scanout->y + scanout->height &&
+ rf.r.y + rf.r.height >= scanout->y &&
console_has_gl(scanout->con)) {
dpy_gl_update(scanout->con, 0, 0, scanout->width,
scanout->height);
--
2.20.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] virtio-gpu: update scanout if there is any area covered by the rect
2022-09-09 1:40 [PATCH] virtio-gpu: update scanout if there is any area covered by the rect Dongwon Kim
@ 2022-09-13 9:45 ` Marc-André Lureau
0 siblings, 0 replies; 2+ messages in thread
From: Marc-André Lureau @ 2022-09-13 9:45 UTC (permalink / raw)
To: Dongwon Kim; +Cc: qemu-devel, Gerd Hoffmann
[-- Attachment #1: Type: text/plain, Size: 1687 bytes --]
On Fri, Sep 9, 2022 at 5:50 AM Dongwon Kim <dongwon.kim@intel.com> wrote:
> The scanout is currently updated only if the whole rect is inside the
> scanout space. This is not a correct condition because the scanout should
> be updated even a small area in the scanout space is covered by the rect.
>
> Cc: Gerd Hoffmann <kraxel@redhat.com>
> Signed-off-by: Dongwon Kim <dongwon.kim@intel.com>
>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
> ---
> hw/display/virtio-gpu.c | 7 ++++---
> 1 file changed, 4 insertions(+), 3 deletions(-)
>
> diff --git a/hw/display/virtio-gpu.c b/hw/display/virtio-gpu.c
> index 20cc703dcc..5e15c79b94 100644
> --- a/hw/display/virtio-gpu.c
> +++ b/hw/display/virtio-gpu.c
> @@ -515,9 +515,10 @@ static void virtio_gpu_resource_flush(VirtIOGPU *g,
> for (i = 0; i < g->parent_obj.conf.max_outputs; i++) {
> scanout = &g->parent_obj.scanout[i];
> if (scanout->resource_id == res->resource_id &&
> - rf.r.x >= scanout->x && rf.r.y >= scanout->y &&
> - rf.r.x + rf.r.width <= scanout->x + scanout->width &&
> - rf.r.y + rf.r.height <= scanout->y + scanout->height &&
> + rf.r.x < scanout->x + scanout->width &&
> + rf.r.x + rf.r.width >= scanout->x &&
> + rf.r.y < scanout->y + scanout->height &&
> + rf.r.y + rf.r.height >= scanout->y &&
> console_has_gl(scanout->con)) {
> dpy_gl_update(scanout->con, 0, 0, scanout->width,
> scanout->height);
> --
> 2.20.1
>
>
>
--
Marc-André Lureau
[-- Attachment #2: Type: text/html, Size: 2747 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-09-13 9:54 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-09-09 1:40 [PATCH] virtio-gpu: update scanout if there is any area covered by the rect Dongwon Kim
2022-09-13 9:45 ` Marc-André Lureau
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).