[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 5/6] spice: get monitors physical dimension
From: |
marcandre . lureau |
Subject: |
[PATCH v3 5/6] spice: get monitors physical dimension |
Date: |
Sun, 27 Sep 2020 18:57:50 +0400 |
From: Marc-André Lureau <marcandre.lureau@redhat.com>
With upcoming Spice server version 0.14.4, the monitor configuration can
contain additional fields for the monitor physical dimensions.
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
---
include/ui/console.h | 3 +++
ui/spice-display.c | 7 +++++++
2 files changed, 10 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..0178d5766d 100644
--- a/ui/spice-display.c
+++ b/ui/spice-display.c
@@ -678,6 +678,13 @@ static int interface_client_monitors_config(QXLInstance
*sin,
if (mc->num_of_monitors > head) {
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];
+ 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);
--
2.26.2
- [PATCH v3 0/6] Add physical display dimensions to spice/virtio-gpu, marcandre . lureau, 2020/09/27
- [PATCH v3 1/6] edid: fix physical display size computation, marcandre . lureau, 2020/09/27
- [PATCH v3 3/6] ui: add getter for UIInfo, marcandre . lureau, 2020/09/27
- [PATCH v3 2/6] edid: use physical dimensions if available, marcandre . lureau, 2020/09/27
- [PATCH v3 4/6] spice: remove the single monitor config logic, marcandre . lureau, 2020/09/27
- [PATCH v3 5/6] spice: get monitors physical dimension,
marcandre . lureau <=
- [PATCH v3 6/6] virtio-gpu: set physical dimensions for EDID, marcandre . lureau, 2020/09/27
- Re: [PATCH v3 0/6] Add physical display dimensions to spice/virtio-gpu, no-reply, 2020/09/27
- Re: [PATCH v3 0/6] Add physical display dimensions to spice/virtio-gpu, Gerd Hoffmann, 2020/09/29