From: Frediano Ziglio <fziglio@redhat.com>
To: marcandre lureau <marcandre.lureau@redhat.com>
Cc: spice-devel@lists.freedesktop.org,
"Michael S. Tsirkin" <mst@redhat.com>,
qemu-devel@nongnu.org, Gerd Hoffmann <kraxel@redhat.com>
Subject: Re: [PATCH v2 5/6] spice: get monitors physical dimension
Date: Sat, 26 Sep 2020 02:56:46 -0400 (EDT) [thread overview]
Message-ID: <1655860639.2196690.1601103406201.JavaMail.zimbra@redhat.com> (raw)
In-Reply-To: <20200925135057.291556-6-marcandre.lureau@redhat.com>
>
> From: Marc-André Lureau <marcandre.lureau@redhat.com>
>
> Note that for consistency, we use the same logic as MonitorsConfig to
> figure out the associated monitor. However, I can't find traces of the
> discussion/patches about the "new spice-server" behaviour: it still uses
> the multiple-configurations path in git master.
>
This part is now obsolete.
> Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
> ---
> include/ui/console.h | 3 +++
> ui/spice-display.c | 9 +++++++++
> 2 files changed, 12 insertions(+)
>
> diff --git a/include/ui/console.h b/include/ui/console.h
> index 353d2e49a1..e7303d8b98 100644
> --- a/include/ui/console.h
> +++ b/include/ui/console.h
> @@ -119,6 +119,9 @@ typedef struct DisplaySurface {
> } DisplaySurface;
>
> typedef struct QemuUIInfo {
> + /* physical dimension */
> + uint16_t width_mm;
> + uint16_t height_mm;
> /* geometry */
> int xoff;
> int yoff;
> diff --git a/ui/spice-display.c b/ui/spice-display.c
> index b304c13149..a10f72bc5c 100644
> --- a/ui/spice-display.c
> +++ b/ui/spice-display.c
> @@ -679,7 +679,16 @@ static int interface_client_monitors_config(QXLInstance
> *sin,
> info.width = mc->monitors[head].width;
> info.height = mc->monitors[head].height;
> }
> +#if SPICE_SERVER_VERSION >= 0x000e04 /* release 0.14.4 */
> + if (mc->flags & VD_AGENT_CONFIG_MONITORS_FLAG_PHYSICAL_SIZE) {
> + VDAgentMonitorMM *mm = (void *)&mc->monitors[mc->num_of_monitors];
>
> + if (mc->num_of_monitors > head) {
This check is the same of above. Won't be better to move al these block
inside the above if block and remove here?
> + info.width_mm = mm[head].width;
> + info.height_mm = mm[head].height;
> + }
> + }
> +#endif
> trace_qemu_spice_ui_info(ssd->qxl.id, info.width, info.height);
> dpy_set_ui_info(ssd->dcl.con, &info);
> return 1;
Frediano
next prev parent reply other threads:[~2020-09-26 6:57 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-09-25 13:50 [PATCH v2 0/6] Add physical display dimensions to spice/virtio-gpu marcandre.lureau
2020-09-25 13:50 ` [PATCH v2 1/6] edid: fix physical display size computation marcandre.lureau
2020-09-25 13:50 ` [PATCH v2 2/6] edid: use physical dimensions if available marcandre.lureau
2020-09-25 13:50 ` [PATCH v2 3/6] ui: add getter for UIInfo marcandre.lureau
2020-09-25 13:50 ` [PATCH v2 4/6] spice: remove the single monitor config logic marcandre.lureau
2020-09-25 13:50 ` [PATCH v2 5/6] spice: get monitors physical dimension marcandre.lureau
2020-09-26 6:56 ` Frediano Ziglio [this message]
2020-09-25 13:50 ` [PATCH v2 6/6] virtio-gpu: set physical dimensions for EDID marcandre.lureau
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=1655860639.2196690.1601103406201.JavaMail.zimbra@redhat.com \
--to=fziglio@redhat.com \
--cc=kraxel@redhat.com \
--cc=marcandre.lureau@redhat.com \
--cc=mst@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=spice-devel@lists.freedesktop.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).