diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2021-03-12 14:00:43 +0400 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2021-03-26 06:37:03 +0100 |
commit | 0c27b9c5687fd276e26c3a95ca6d89f792fc7a1c (patch) | |
tree | 3c3af2f811e562795c1e09c0bed118729427fd8e /contrib/vhost-user-gpu/meson.build | |
parent | d2aea775d4ab1a3d8fb92587881dc6fa55819f62 (diff) |
vhost-user-gpu: glFlush before notifying clients
For similar reasons as commit 3af1671852 ("spice: flush on GL update
before notifying client"), vhost-user-gpu must ensure the GL state is
flushed before sharing its rendering result.
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Message-Id: <20210312100108.2706195-3-marcandre.lureau@redhat.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'contrib/vhost-user-gpu/meson.build')
-rw-r--r-- | contrib/vhost-user-gpu/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/vhost-user-gpu/meson.build b/contrib/vhost-user-gpu/meson.build index 2fc2320b52..0ce1515a10 100644 --- a/contrib/vhost-user-gpu/meson.build +++ b/contrib/vhost-user-gpu/meson.build @@ -2,7 +2,7 @@ if 'CONFIG_TOOLS' in config_host and 'CONFIG_VIRGL' in config_host \ and 'CONFIG_GBM' in config_host and 'CONFIG_LINUX' in config_host \ and pixman.found() executable('vhost-user-gpu', files('vhost-user-gpu.c', 'virgl.c', 'vugbm.c'), - dependencies: [qemuutil, pixman, gbm, virgl, vhost_user], + dependencies: [qemuutil, pixman, gbm, virgl, vhost_user, opengl], install: true, install_dir: get_option('libexecdir')) |