qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Vivek Kasireddy <vivek.kasireddy@intel.com>
To: qemu-devel@nongnu.org
Cc: Vivek Kasireddy <vivek.kasireddy@intel.com>,
	Gerd Hoffmann <kraxel@redhat.com>
Subject: [PATCH v7 12/14] virtio-gpu: Factor out update scanout
Date: Wed, 26 May 2021 16:14:27 -0700	[thread overview]
Message-ID: <20210526231429.1045476-13-vivek.kasireddy@intel.com> (raw)
In-Reply-To: <20210526231429.1045476-1-vivek.kasireddy@intel.com>

Creating a small helper function for updating the scanout
will be useful in the next patch where this needs to be
done early in do_set_scanout before returning.

Cc: Gerd Hoffmann <kraxel@redhat.com>
Signed-off-by: Vivek Kasireddy <vivek.kasireddy@intel.com>
---
 hw/display/virtio-gpu.c | 35 +++++++++++++++++++++++------------
 1 file changed, 23 insertions(+), 12 deletions(-)

diff --git a/hw/display/virtio-gpu.c b/hw/display/virtio-gpu.c
index 788b4540d5..0af08edde8 100644
--- a/hw/display/virtio-gpu.c
+++ b/hw/display/virtio-gpu.c
@@ -556,6 +556,28 @@ static void virtio_unref_resource(pixman_image_t *image, void *data)
     pixman_image_unref(data);
 }
 
+static void virtio_gpu_update_scanout(VirtIOGPU *g,
+                                      uint32_t scanout_id,
+                                      struct virtio_gpu_simple_resource *res,
+                                      struct virtio_gpu_rect *r)
+{
+    struct virtio_gpu_simple_resource *ores;
+    struct virtio_gpu_scanout *scanout;
+
+    scanout = &g->parent_obj.scanout[scanout_id];
+    ores = virtio_gpu_find_resource(g, scanout->resource_id);
+    if (ores) {
+        ores->scanout_bitmask &= ~(1 << scanout_id);
+    }
+
+    res->scanout_bitmask |= (1 << scanout_id);
+    scanout->resource_id = res->resource_id;
+    scanout->x = r->x;
+    scanout->y = r->y;
+    scanout->width = r->width;
+    scanout->height = r->height;
+}
+
 static void virtio_gpu_do_set_scanout(VirtIOGPU *g,
                                       uint32_t scanout_id,
                                       struct virtio_gpu_framebuffer *fb,
@@ -563,7 +585,6 @@ static void virtio_gpu_do_set_scanout(VirtIOGPU *g,
                                       struct virtio_gpu_rect *r,
                                       uint32_t *error)
 {
-    struct virtio_gpu_simple_resource *ores;
     struct virtio_gpu_scanout *scanout;
     uint8_t *data;
 
@@ -623,17 +644,7 @@ static void virtio_gpu_do_set_scanout(VirtIOGPU *g,
                                 scanout->ds);
     }
 
-    ores = virtio_gpu_find_resource(g, scanout->resource_id);
-    if (ores) {
-        ores->scanout_bitmask &= ~(1 << scanout_id);
-    }
-
-    res->scanout_bitmask |= (1 << scanout_id);
-    scanout->resource_id = res->resource_id;
-    scanout->x = r->x;
-    scanout->y = r->y;
-    scanout->width = r->width;
-    scanout->height = r->height;
+    virtio_gpu_update_scanout(g, scanout_id, res, r);
 }
 
 static void virtio_gpu_set_scanout(VirtIOGPU *g,
-- 
2.30.2



  parent reply	other threads:[~2021-05-26 23:30 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-26 23:14 [PATCH v7 00/14] virtio-gpu: Add support for Blob resources feature Vivek Kasireddy
2021-05-26 23:14 ` [PATCH v7 01/14] ui: Get the fd associated with udmabuf driver Vivek Kasireddy
2021-05-26 23:14 ` [PATCH v7 02/14] headers: Add udmabuf.h Vivek Kasireddy
2021-05-26 23:14 ` [PATCH v7 03/14] virtio-gpu: Add udmabuf helpers Vivek Kasireddy
2021-05-26 23:14 ` [PATCH v7 04/14] stubs: Add stubs for " Vivek Kasireddy
2021-05-26 23:14 ` [PATCH v7 05/14] virtio-gpu: Add virtio_gpu_find_check_resource Vivek Kasireddy
2021-05-26 23:14 ` [PATCH v7 06/14] virtio-gpu: Refactor virtio_gpu_set_scanout Vivek Kasireddy
2021-05-26 23:14 ` [PATCH v7 07/14] virtio-gpu: Refactor virtio_gpu_create_mapping_iov Vivek Kasireddy
2021-05-26 23:14 ` [PATCH v7 08/14] virtio-gpu: Add initial definitions for blob resources Vivek Kasireddy
2021-05-26 23:14 ` [PATCH v7 09/14] virtio-gpu: Add virtio_gpu_resource_create_blob Vivek Kasireddy
2021-05-26 23:14 ` [PATCH v7 10/14] ui/pixman: Add qemu_pixman_to_drm_format() Vivek Kasireddy
2021-05-26 23:14 ` [PATCH v7 11/14] virtio-gpu: Add helpers to create and destroy dmabuf objects Vivek Kasireddy
2021-05-26 23:14 ` Vivek Kasireddy [this message]
2021-05-26 23:14 ` [PATCH v7 13/14] virtio-gpu: Add virtio_gpu_set_scanout_blob Vivek Kasireddy
2021-05-26 23:14 ` [PATCH v7 14/14] virtio-gpu: Update cursor data using blob Vivek Kasireddy

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210526231429.1045476-13-vivek.kasireddy@intel.com \
    --to=vivek.kasireddy@intel.com \
    --cc=kraxel@redhat.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).