From: Bernhard Beschow <shentey@gmail.com>
To: qemu-devel@nongnu.org, marcandre.lureau@redhat.com
Cc: richard.henderson@linaro.org,
"Marc-André Lureau" <marcandre.lureau@redhat.com>,
"Gerd Hoffmann" <kraxel@redhat.com>,
"Paolo Bonzini" <pbonzini@redhat.com>,
"Daniel P. Berrangé" <berrange@redhat.com>,
"Thomas Huth" <thuth@redhat.com>,
"Philippe Mathieu-Daudé" <philmd@linaro.org>
Subject: Re: [PULL 17/33] ui/dbus: win32 support
Date: Thu, 29 Jun 2023 17:55:06 +0000 [thread overview]
Message-ID: <BCD39302-3C86-483C-A5FC-424F88CF791A@gmail.com> (raw)
In-Reply-To: <20230627130231.1614896-18-marcandre.lureau@redhat.com>
Am 27. Juni 2023 13:02:14 UTC schrieb marcandre.lureau@redhat.com:
>From: Marc-André Lureau <marcandre.lureau@redhat.com>
>
>D-Bus doesn't support fd-passing on Windows (AF_UNIX doesn't have
>SCM_RIGHTS yet, but there are other means to share objects. I have
>proposed various solutions upstream, but none seem fitting enough atm).
>
>To make the "-display dbus" work on Windows, implement an alternative
>D-Bus interface where all the 'h' (FDs) arguments are replaced with
>'ay' (WSASocketW data), and sockets are passed to the other end via
>WSADuplicateSocket().
>
>Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
>Message-Id: <20230606115658.677673-6-marcandre.lureau@redhat.com>
>---
> meson.build | 4 +--
> ui/dbus.h | 6 +++++
> audio/dbusaudio.c | 44 +++++++++++++++++++++++++++------
> ui/dbus-chardev.c | 22 +++++++++++++----
> ui/dbus-console.c | 59 ++++++++++++++++++++++++++++++++++++++------
> ui/dbus-display1.xml | 28 +++++++++++++++++++++
> ui/meson.build | 9 ++++++-
> 7 files changed, 149 insertions(+), 23 deletions(-)
>
>diff --git a/meson.build b/meson.build
>index b409788832..9a1ce43471 100644
>--- a/meson.build
>+++ b/meson.build
>@@ -838,6 +838,8 @@ if gdbus_codegen.found() and get_option('cfi')
> gdbus_codegen_error = '@0@ uses gdbus-codegen, which does not support control flow integrity'
> endif
>
>+xml_pp = find_program('scripts/xml-preprocess.py')
>+
> lttng = not_found
> if 'ust' in get_option('trace_backends')
> lttng = dependency('lttng-ust', required: true, version: '>= 2.1',
>@@ -1985,8 +1987,6 @@ dbus_display = get_option('dbus_display') \
> error_message: '-display dbus requires glib>=2.64') \
> .require(gdbus_codegen.found(),
> error_message: gdbus_codegen_error.format('-display dbus')) \
>- .require(targetos != 'windows',
>- error_message: '-display dbus is not available on Windows') \
> .allowed()
>
> have_virtfs = get_option('virtfs') \
>diff --git a/ui/dbus.h b/ui/dbus.h
>index 9c149e7b41..1e8c24a48e 100644
>--- a/ui/dbus.h
>+++ b/ui/dbus.h
>@@ -62,6 +62,12 @@ struct DBusDisplay {
> Notifier notifier;
> };
>
>+#ifdef WIN32
>+bool
>+dbus_win32_import_socket(GDBusMethodInvocation *invocation,
>+ GVariant *arg_listener, int *socket);
>+#endif
>+
> #define TYPE_DBUS_DISPLAY "dbus-display"
> OBJECT_DECLARE_SIMPLE_TYPE(DBusDisplay, DBUS_DISPLAY)
>
>diff --git a/audio/dbusaudio.c b/audio/dbusaudio.c
>index de59467d9e..7a11fbfb42 100644
>--- a/audio/dbusaudio.c
>+++ b/audio/dbusaudio.c
>@@ -33,6 +33,7 @@
> #include <gio/gunixfdlist.h>
> #endif
>
>+#include "ui/dbus.h"
This patch causes below compile error since pixman.h isn't found. It seems as if the pixman include path is missing. Since pixman.h is found elsewhere in the same build I suspect that the DBUS audio module now needs a pixman dependency -- which sounds a little bit weired.
FAILED: libaudio-dbus.a.p/audio_dbusaudio.c.o
cc -m64 -mcx16 -Ilibaudio-dbus.a.p -I. -I../src -Iqapi -Itrace -Iui -Iui/shader -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/sysprof-4 -I/usr/include/libmount -I/usr/include/blkid -I/usr/include/gio-unix-2.0 -fdiagnostics-color=auto -Wall -Winvalid-pch -Werror -std=gnu11 -O0 -g -fstack-protector-strong -Wundef -Wwrite-strings -Wmissing-prototypes -Wstrict-prototypes -Wredundant-decls -Wold-style-declaration -Wold-style-definition -Wtype-limits -Wformat-security -Wformat-y2k -Winit-self -Wignored-qualifiers -Wempty-body -Wnested-externs -Wendif-labels -Wexpansion-to-defined -Wimplicit-fallthrough=2 -Wmissing-format-attribute -Wno-missing-include-dirs -Wno-shift-negative-value -Wno-psabi -isystem qemu/src/linux-headers -isystem linux-headers -iquote . -iquote qemu/src -iquote qemu/src/include -iquote qemu/src/host/include/x86_64 -iquote qemu/src/host/include/generic -iquote qemu/src/tcg/i386 -Wno-unused-function -pthread -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -fno-strict-aliasing -fno-common -fwrapv -march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -fPIC -DBUILD_DSO -MD -MQ libaudio-dbus.a.p/audio_dbusaudio.c.o -MF libaudio-dbus.a.p/audio_dbusaudio.c.o.d -o libaudio-dbus.a.p/audio_dbusaudio.c.o -c ../src/audio/dbusaudio.c
In file included from qemu/src/include/ui/console.h:4,
from qemu/src/ui/dbus.h:31,
from ../src/audio/dbusaudio.c:36:
qemu/src/include/ui/qemu-pixman.h:12:10: fatal error: pixman.h: No such file or directory
12 | #include <pixman.h>
| ^~~~~~~~~~
Best regards,
Bernhard
> #include "ui/dbus-display1.h"
>
> #define AUDIO_CAP "dbus"
>@@ -422,7 +423,6 @@ dbus_audio_fini(void *opaque)
> g_free(da);
> }
>
>-#ifdef G_OS_UNIX
> static void
> listener_out_vanished_cb(GDBusConnection *connection,
> gboolean remote_peer_vanished,
>@@ -448,7 +448,9 @@ listener_in_vanished_cb(GDBusConnection *connection,
> static gboolean
> dbus_audio_register_listener(AudioState *s,
> GDBusMethodInvocation *invocation,
>+#ifdef G_OS_UNIX
> GUnixFDList *fd_list,
>+#endif
> GVariant *arg_listener,
> bool out)
> {
>@@ -475,6 +477,11 @@ dbus_audio_register_listener(AudioState *s,
> return DBUS_METHOD_INVOCATION_HANDLED;
> }
>
>+#ifdef G_OS_WIN32
>+ if (!dbus_win32_import_socket(invocation, arg_listener, &fd)) {
>+ return DBUS_METHOD_INVOCATION_HANDLED;
>+ }
>+#else
> fd = g_unix_fd_list_get(fd_list, g_variant_get_handle(arg_listener), &err);
> if (err) {
> g_dbus_method_invocation_return_error(invocation,
>@@ -484,6 +491,7 @@ dbus_audio_register_listener(AudioState *s,
> err->message);
> return DBUS_METHOD_INVOCATION_HANDLED;
> }
>+#endif
>
> socket = g_socket_new_from_fd(fd, &err);
> if (err) {
>@@ -492,15 +500,28 @@ dbus_audio_register_listener(AudioState *s,
> DBUS_DISPLAY_ERROR_FAILED,
> "Couldn't make a socket: %s",
> err->message);
>+#ifdef G_OS_WIN32
>+ closesocket(fd);
>+#else
>+ close(fd);
>+#endif
> return DBUS_METHOD_INVOCATION_HANDLED;
> }
> socket_conn = g_socket_connection_factory_create_connection(socket);
> if (out) {
> qemu_dbus_display1_audio_complete_register_out_listener(
>- da->iface, invocation, NULL);
>+ da->iface, invocation
>+#ifdef G_OS_UNIX
>+ , NULL
>+#endif
>+ );
> } else {
> qemu_dbus_display1_audio_complete_register_in_listener(
>- da->iface, invocation, NULL);
>+ da->iface, invocation
>+#ifdef G_OS_UNIX
>+ , NULL
>+#endif
>+ );
> }
>
> listener_conn =
>@@ -578,24 +599,33 @@ dbus_audio_register_listener(AudioState *s,
> static gboolean
> dbus_audio_register_out_listener(AudioState *s,
> GDBusMethodInvocation *invocation,
>+#ifdef G_OS_UNIX
> GUnixFDList *fd_list,
>+#endif
> GVariant *arg_listener)
> {
> return dbus_audio_register_listener(s, invocation,
>- fd_list, arg_listener, true);
>+#ifdef G_OS_UNIX
>+ fd_list,
>+#endif
>+ arg_listener, true);
>
> }
>
> static gboolean
> dbus_audio_register_in_listener(AudioState *s,
> GDBusMethodInvocation *invocation,
>+#ifdef G_OS_UNIX
> GUnixFDList *fd_list,
>+#endif
> GVariant *arg_listener)
> {
> return dbus_audio_register_listener(s, invocation,
>- fd_list, arg_listener, false);
>-}
>+#ifdef G_OS_UNIX
>+ fd_list,
> #endif
>+ arg_listener, false);
>+}
>
> static void
> dbus_audio_set_server(AudioState *s, GDBusObjectManagerServer *server, bool p2p)
>@@ -610,14 +640,12 @@ dbus_audio_set_server(AudioState *s, GDBusObjectManagerServer *server, bool p2p)
>
> da->audio = g_dbus_object_skeleton_new(DBUS_DISPLAY1_AUDIO_PATH);
> da->iface = qemu_dbus_display1_audio_skeleton_new();
>-#ifdef G_OS_UNIX
> g_object_connect(da->iface,
> "swapped-signal::handle-register-in-listener",
> dbus_audio_register_in_listener, s,
> "swapped-signal::handle-register-out-listener",
> dbus_audio_register_out_listener, s,
> NULL);
>-#endif
>
> g_dbus_object_skeleton_add_interface(G_DBUS_OBJECT_SKELETON(da->audio),
> G_DBUS_INTERFACE_SKELETON(da->iface));
>diff --git a/ui/dbus-chardev.c b/ui/dbus-chardev.c
>index 7154d81a9a..1d3a7122a1 100644
>--- a/ui/dbus-chardev.c
>+++ b/ui/dbus-chardev.c
>@@ -110,18 +110,24 @@ dbus_chardev_init(DBusDisplay *dpy)
> dbus_display_chardev_foreach, dpy);
> }
>
>-#ifdef G_OS_UNIX
> static gboolean
> dbus_chr_register(
> DBusChardev *dc,
> GDBusMethodInvocation *invocation,
>+#ifdef G_OS_UNIX
> GUnixFDList *fd_list,
>+#endif
> GVariant *arg_stream,
> QemuDBusDisplay1Chardev *object)
> {
> g_autoptr(GError) err = NULL;
> int fd;
>
>+#ifdef G_OS_WIN32
>+ if (!dbus_win32_import_socket(invocation, arg_stream, &fd)) {
>+ return DBUS_METHOD_INVOCATION_HANDLED;
>+ }
>+#else
> fd = g_unix_fd_list_get(fd_list, g_variant_get_handle(arg_stream), &err);
> if (err) {
> g_dbus_method_invocation_return_error(
>@@ -131,13 +137,18 @@ dbus_chr_register(
> "Couldn't get peer FD: %s", err->message);
> return DBUS_METHOD_INVOCATION_HANDLED;
> }
>+#endif
>
> if (qemu_chr_add_client(CHARDEV(dc), fd) < 0) {
> g_dbus_method_invocation_return_error(invocation,
> DBUS_DISPLAY_ERROR,
> DBUS_DISPLAY_ERROR_FAILED,
> "Couldn't register FD!");
>+#ifdef G_OS_WIN32
>+ closesocket(fd);
>+#else
> close(fd);
>+#endif
> return DBUS_METHOD_INVOCATION_HANDLED;
> }
>
>@@ -145,10 +156,13 @@ dbus_chr_register(
> "owner", g_dbus_method_invocation_get_sender(invocation),
> NULL);
>
>- qemu_dbus_display1_chardev_complete_register(object, invocation, NULL);
>+ qemu_dbus_display1_chardev_complete_register(object, invocation
>+#ifndef G_OS_WIN32
>+ , NULL
>+#endif
>+ );
> return DBUS_METHOD_INVOCATION_HANDLED;
> }
>-#endif
>
> static gboolean
> dbus_chr_send_break(
>@@ -179,10 +193,8 @@ dbus_chr_open(Chardev *chr, ChardevBackend *backend,
> dc->iface = qemu_dbus_display1_chardev_skeleton_new();
> g_object_set(dc->iface, "name", backend->u.dbus.data->name, NULL);
> g_object_connect(dc->iface,
>-#ifdef G_OS_UNIX
> "swapped-signal::handle-register",
> dbus_chr_register, dc,
>-#endif
> "swapped-signal::handle-send-break",
> dbus_chr_send_break, dc,
> NULL);
>diff --git a/ui/dbus-console.c b/ui/dbus-console.c
>index d5f6c93637..4a1c1fb55e 100644
>--- a/ui/dbus-console.c
>+++ b/ui/dbus-console.c
>@@ -165,7 +165,6 @@ dbus_display_console_class_init(DBusDisplayConsoleClass *klass)
> gobject_class->dispose = dbus_display_console_dispose;
> }
>
>-#ifdef G_OS_UNIX
> static void
> listener_vanished_cb(DBusDisplayListener *listener)
> {
>@@ -177,7 +176,6 @@ listener_vanished_cb(DBusDisplayListener *listener)
> g_hash_table_remove(ddc->listeners, name);
> qkbd_state_lift_all_keys(ddc->kbd);
> }
>-#endif
>
> static gboolean
> dbus_console_set_ui_info(DBusDisplayConsole *ddc,
>@@ -211,11 +209,47 @@ dbus_console_set_ui_info(DBusDisplayConsole *ddc,
> return DBUS_METHOD_INVOCATION_HANDLED;
> }
>
>-#ifdef G_OS_UNIX
>+#ifdef G_OS_WIN32
>+bool
>+dbus_win32_import_socket(GDBusMethodInvocation *invocation,
>+ GVariant *arg_listener, int *socket)
>+{
>+ gsize n;
>+ WSAPROTOCOL_INFOW *info = (void *)g_variant_get_fixed_array(arg_listener, &n, 1);
>+
>+ if (!info || n != sizeof(*info)) {
>+ g_dbus_method_invocation_return_error(
>+ invocation,
>+ DBUS_DISPLAY_ERROR,
>+ DBUS_DISPLAY_ERROR_FAILED,
>+ "Failed to get socket infos");
>+ return false;
>+ }
>+
>+ *socket = WSASocketW(FROM_PROTOCOL_INFO,
>+ FROM_PROTOCOL_INFO,
>+ FROM_PROTOCOL_INFO,
>+ info, 0, 0);
>+ if (*socket == INVALID_SOCKET) {
>+ g_autofree gchar *emsg = g_win32_error_message(WSAGetLastError());
>+ g_dbus_method_invocation_return_error(
>+ invocation,
>+ DBUS_DISPLAY_ERROR,
>+ DBUS_DISPLAY_ERROR_FAILED,
>+ "Couldn't create socket: %s", emsg);
>+ return false;
>+ }
>+
>+ return true;
>+}
>+#endif
>+
> static gboolean
> dbus_console_register_listener(DBusDisplayConsole *ddc,
> GDBusMethodInvocation *invocation,
>+#ifdef G_OS_UNIX
> GUnixFDList *fd_list,
>+#endif
> GVariant *arg_listener)
> {
> const char *sender = g_dbus_method_invocation_get_sender(invocation);
>@@ -237,6 +271,11 @@ dbus_console_register_listener(DBusDisplayConsole *ddc,
> return DBUS_METHOD_INVOCATION_HANDLED;
> }
>
>+#ifdef G_OS_WIN32
>+ if (!dbus_win32_import_socket(invocation, arg_listener, &fd)) {
>+ return DBUS_METHOD_INVOCATION_HANDLED;
>+ }
>+#else
> fd = g_unix_fd_list_get(fd_list, g_variant_get_handle(arg_listener), &err);
> if (err) {
> g_dbus_method_invocation_return_error(
>@@ -246,6 +285,7 @@ dbus_console_register_listener(DBusDisplayConsole *ddc,
> "Couldn't get peer fd: %s", err->message);
> return DBUS_METHOD_INVOCATION_HANDLED;
> }
>+#endif
>
> socket = g_socket_new_from_fd(fd, &err);
> if (err) {
>@@ -254,13 +294,21 @@ dbus_console_register_listener(DBusDisplayConsole *ddc,
> DBUS_DISPLAY_ERROR,
> DBUS_DISPLAY_ERROR_FAILED,
> "Couldn't make a socket: %s", err->message);
>+#ifdef G_OS_WIN32
>+ closesocket(fd);
>+#else
> close(fd);
>+#endif
> return DBUS_METHOD_INVOCATION_HANDLED;
> }
> socket_conn = g_socket_connection_factory_create_connection(socket);
>
> qemu_dbus_display1_console_complete_register_listener(
>- ddc->iface, invocation, NULL);
>+ ddc->iface, invocation
>+#ifdef G_OS_UNIX
>+ , NULL
>+#endif
>+ );
>
> listener_conn = g_dbus_connection_new_sync(
> G_IO_STREAM(socket_conn),
>@@ -287,7 +335,6 @@ dbus_console_register_listener(DBusDisplayConsole *ddc,
> trace_dbus_registered_listener(sender);
> return DBUS_METHOD_INVOCATION_HANDLED;
> }
>-#endif
>
> static gboolean
> dbus_kbd_press(DBusDisplayConsole *ddc,
>@@ -516,10 +563,8 @@ dbus_display_console_new(DBusDisplay *display, QemuConsole *con)
> "device-address", device_addr,
> NULL);
> g_object_connect(ddc->iface,
>-#ifdef G_OS_UNIX
> "swapped-signal::handle-register-listener",
> dbus_console_register_listener, ddc,
>-#endif
> "swapped-signal::handle-set-uiinfo",
> dbus_console_set_ui_info, ddc,
> NULL);
>diff --git a/ui/dbus-display1.xml b/ui/dbus-display1.xml
>index cc0c9b68bf..cd596f774e 100644
>--- a/ui/dbus-display1.xml
>+++ b/ui/dbus-display1.xml
>@@ -57,7 +57,13 @@
> :dbus:iface:`org.qemu.Display1.Listener` interface.
> -->
> <method name="RegisterListener">
>+ <?if $(env.TARGETOS) == windows?>
>+ <arg type="ay" name="listener" direction="in">
>+ <annotation name="org.gtk.GDBus.C.ForceGVariant" value="true"/>
>+ </arg>
>+ <?else?>
> <arg type="h" name="listener" direction="in"/>
>+ <?endif?>
> </method>
>
> <!--
>@@ -334,6 +340,9 @@
> </arg>
> </method>
>
>+ <?if $(env.TARGETOS) == windows?>
>+ <!-- Add shared memory/texture support -->
>+ <?else?>
> <!--
> ScanoutDMABUF:
> @dmabuf: the DMABUF file descriptor.
>@@ -372,6 +381,7 @@
> <arg type="i" name="width" direction="in"/>
> <arg type="i" name="height" direction="in"/>
> </method>
>+ <?endif?>
>
> <!--
> Disable:
>@@ -532,7 +542,13 @@
> :dbus:iface:`org.qemu.Display1.AudioOutListener` interface.
> -->
> <method name="RegisterOutListener">
>+ <?if $(env.TARGETOS) == windows?>
>+ <arg type="ay" name="listener" direction="in">
>+ <annotation name="org.gtk.GDBus.C.ForceGVariant" value="true"/>
>+ </arg>
>+ <?else?>
> <arg type="h" name="listener" direction="in"/>
>+ <?endif?>
> </method>
>
> <!--
>@@ -547,7 +563,13 @@
> :dbus:iface:`org.qemu.Display1.AudioInListener` interface.
> -->
> <method name="RegisterInListener">
>+ <?if $(env.TARGETOS) == windows?>
>+ <arg type="ay" name="listener" direction="in">
>+ <annotation name="org.gtk.GDBus.C.ForceGVariant" value="true"/>
>+ </arg>
>+ <?else?>
> <arg type="h" name="listener" direction="in"/>
>+ <?endif?>
> </method>
> </interface>
>
>@@ -760,7 +782,13 @@
> The current handler, if any, will be replaced.
> -->
> <method name="Register">
>+ <?if $(env.TARGETOS) == windows?>
>+ <arg type="ay" name="listener" direction="in">
>+ <annotation name="org.gtk.GDBus.C.ForceGVariant" value="true"/>
>+ </arg>
>+ <?else?>
> <arg type="h" name="stream" direction="in"/>
>+ <?endif?>
> </method>
>
> <!--
>diff --git a/ui/meson.build b/ui/meson.build
>index a5506ac8ad..d84650676d 100644
>--- a/ui/meson.build
>+++ b/ui/meson.build
>@@ -74,9 +74,16 @@ endif
>
> if dbus_display
> dbus_ss = ss.source_set()
>+ env = environment()
>+ env.set('TARGETOS', targetos)
>+ xml = custom_target('dbus-display preprocess',
>+ input: 'dbus-display1.xml',
>+ output: 'dbus-display1.xml',
>+ env: env,
>+ command: [xml_pp, '@INPUT@', '@OUTPUT@'])
> dbus_display1 = custom_target('dbus-display gdbus-codegen',
> output: ['dbus-display1.h', 'dbus-display1.c'],
>- input: files('dbus-display1.xml'),
>+ input: xml,
> command: [gdbus_codegen, '@INPUT@',
> '--glib-min-required', '2.64',
> '--output-directory', meson.current_build_dir(),
next prev parent reply other threads:[~2023-06-29 17:56 UTC|newest]
Thread overview: 46+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-06-27 13:01 [PULL 00/33] UI patches marcandre.lureau
2023-06-27 13:01 ` [PULL 01/33] ui: return NULL when getting cursor without a console marcandre.lureau
2023-06-27 13:01 ` [PULL 02/33] egl: no need to lookup EGL functions manually marcandre.lureau
2023-06-27 13:02 ` [PULL 03/33] ui/sdl2: OpenGL window context marcandre.lureau
2023-06-27 13:02 ` [PULL 04/33] virtio-gpu: Optimize 2D resource data transfer marcandre.lureau
2023-06-27 15:04 ` Richard Henderson
2023-06-27 15:10 ` Marc-André Lureau
2023-06-28 9:22 ` Richard Henderson
2023-06-27 13:02 ` [PULL 05/33] chardev/char-win-stdio: Support VT sequences on Windows 11 host marcandre.lureau
2023-06-27 13:02 ` [PULL 06/33] ui/touch: Move event handling to a common helper marcandre.lureau
2023-06-27 13:02 ` [PULL 07/33] ui/dbus: Expose a touch device interface marcandre.lureau
2023-06-27 13:02 ` [PULL 08/33] virtio-gpu: Make non-gl display updates work again when blob=true marcandre.lureau
2023-06-27 13:02 ` [PULL 09/33] virtio-gpu-udmabuf: create udmabuf for blob even when iov_cnt == 1 marcandre.lureau
2023-06-27 13:02 ` [PULL 10/33] ui/gtk: set the area of the scanout texture correctly marcandre.lureau
2023-06-27 17:46 ` Michael Tokarev
2023-06-27 13:02 ` [PULL 11/33] virtio-gpu: OUT_OF_MEMORY if failing to create udmabuf marcandre.lureau
2023-06-27 13:02 ` [PULL 12/33] ui/gtk: making dmabuf NULL when it's released marcandre.lureau
2023-06-27 13:02 ` [PULL 13/33] ui/egl: export qemu_egl_get_error_string() marcandre.lureau
2023-06-27 13:02 ` [PULL 14/33] ui/egl: fix make_context_current() callback return value marcandre.lureau
2023-06-27 13:02 ` [PULL 15/33] ui/dbus: compile without gio/gunixfdlist.h marcandre.lureau
2023-06-27 13:02 ` [PULL 16/33] scripts: add a XML preprocessor script marcandre.lureau
2023-06-27 13:02 ` [PULL 17/33] ui/dbus: win32 support marcandre.lureau
2023-06-29 17:55 ` Bernhard Beschow [this message]
2023-06-30 21:41 ` Marc-André Lureau
2023-06-30 23:51 ` Philippe Mathieu-Daudé
2023-06-27 13:02 ` [PULL 18/33] qtest: add qtest_pid() marcandre.lureau
2023-06-27 13:02 ` [PULL 19/33] tests: make dbus-display-test work on win32 marcandre.lureau
2023-06-27 13:02 ` [PULL 20/33] ui/dbus: introduce "Interfaces" properties marcandre.lureau
2023-06-27 13:02 ` [PULL 21/33] console/win32: allocate shareable display surface marcandre.lureau
2023-06-27 13:02 ` [PULL 22/33] virtio-gpu/win32: allocate shareable 2d resources/images marcandre.lureau
2023-07-03 11:45 ` Alexander Bulekov
2023-07-03 14:11 ` Peter Maydell
2023-06-27 13:02 ` [PULL 23/33] ui/dbus: use shared memory when possible on win32 marcandre.lureau
2023-06-27 13:02 ` [PULL 24/33] ui: add egl-headless support " marcandre.lureau
2023-06-27 13:02 ` [PULL 25/33] ui/egl: default to GLES on windows marcandre.lureau
2023-06-27 13:02 ` [PULL 26/33] ui: add egl_fb_read_rect() marcandre.lureau
2023-06-27 13:02 ` [PULL 27/33] ui/dbus: add GL support on win32 marcandre.lureau
2023-06-27 13:02 ` [PULL 28/33] ui/dbus: add some GL traces marcandre.lureau
2023-06-27 13:02 ` [PULL 29/33] virtio-gpu-virgl: teach it to get the QEMU EGL display marcandre.lureau
2023-06-27 13:02 ` [PULL 30/33] ui/egl: query ANGLE d3d device marcandre.lureau
2023-06-27 13:02 ` [PULL 31/33] ui: add optional d3d texture pointer to scanout texture marcandre.lureau
2023-06-27 13:02 ` [PULL 32/33] virtio-gpu-virgl: use D3D11_SHARE_TEXTURE when available marcandre.lureau
2023-06-27 13:02 ` [PULL 33/33] ui/dbus: use shared D3D11 Texture2D when possible marcandre.lureau
2023-06-29 7:40 ` Richard Henderson
2023-06-29 7:45 ` Richard Henderson
2023-06-29 8:35 ` Mark Cave-Ayland
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=BCD39302-3C86-483C-A5FC-424F88CF791A@gmail.com \
--to=shentey@gmail.com \
--cc=berrange@redhat.com \
--cc=kraxel@redhat.com \
--cc=marcandre.lureau@redhat.com \
--cc=pbonzini@redhat.com \
--cc=philmd@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=richard.henderson@linaro.org \
--cc=thuth@redhat.com \
/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).