[Spice-devel] [spice-protocol PATCH] Add monitors_config escape for qxl-win driver
sstutsma at redhat.com
sstutsma at redhat.com
Thu Jun 18 16:14:11 PDT 2015
From: Sandy Stutsman <sstutsma at redhat.com>
Addresses: https://bugzilla.redhat.com/show_bug.cgi?id=1202419
A monitors_config message needs to be sent from the guest to the client
when monitors are ordered with the "Set Resolution" applet.
---
spice/qxl_windows.h | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/spice/qxl_windows.h b/spice/qxl_windows.h
index d1df684..be4f6ec 100644
--- a/spice/qxl_windows.h
+++ b/spice/qxl_windows.h
@@ -7,6 +7,7 @@
enum {
QXL_ESCAPE_SET_CUSTOM_DISPLAY = 0x10001,
+ QXL_ESCAPE_MONITOR_CONFIG
};
typedef struct SPICE_ATTR_PACKED QXLEscapeSetCustomDisplay {
@@ -15,6 +16,15 @@ typedef struct SPICE_ATTR_PACKED QXLEscapeSetCustomDisplay {
uint32_t bpp;
} QXLEscapeSetCustomDisplay;
+typedef struct SPICE_ATTR_PACKED QXLEscapeMonitorConfig {
+ uint32_t xpos;
+ uint32_t ypos;
+ uint32_t xres;
+ uint32_t yres;
+ uint32_t bpp;
+ uint64_t monitors_config;
+} QXLEscapeMonitorConfig;
+
#include <spice/end-packed.h>
#endif /* _H_QXL_WINDOWS */
--
1.9.5.msysgit.0
More information about the Spice-devel
mailing list