From 9f5c6d06ad4a0c35afe2b657109f78a1a7fb6a4d Mon Sep 17 00:00:00 2001 From: Michal Privoznik Date: Wed, 24 Feb 2016 13:42:18 +0100 Subject: [PATCH 1/3] spice/gl: Enable dmabuf only for spice >= 0.13.1 After 474114b7 the dmabuf feature is enabled whenever spice greater than or equal to spice 0.13.0 is found. This is because two new functions are required: spice_qxl_gl_scanout and spice_qxl_gl_draw_async. These were, however, introduce in 0.13.1 release. Well, technically they haven't been released yet, but for sure they are not going to be part of 0.13.0 release (for the ABI stability sake). Signed-off-by: Michal Privoznik Message-id: 1a724e97cb587624d6f6009c15395496bccfa32b.1456317738.git.mprivozn@redhat.com Signed-off-by: Gerd Hoffmann --- include/ui/spice-display.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/ui/spice-display.h b/include/ui/spice-display.h index 69a222b543..30ccfe3dab 100644 --- a/include/ui/spice-display.h +++ b/include/ui/spice-display.h @@ -25,7 +25,7 @@ #include "sysemu/sysemu.h" #if defined(CONFIG_OPENGL_DMABUF) -# if SPICE_SERVER_VERSION >= 0x000d00 /* release 0.13.0 */ +# if SPICE_SERVER_VERSION >= 0x000d01 /* release 0.13.1 */ # define HAVE_SPICE_GL 1 # include "ui/egl-helpers.h" # include "ui/egl-context.h" From 438528a3e7021f14097f5665ab5d5196d538503b Mon Sep 17 00:00:00 2001 From: Thomas Huth Date: Thu, 25 Feb 2016 10:36:06 +0100 Subject: [PATCH 2/3] MAINTAINERS: Add spice-display.h to the SPICE section Signed-off-by: Thomas Huth Message-id: 1456392967-20274-3-git-send-email-thuth@redhat.com Signed-off-by: Gerd Hoffmann --- MAINTAINERS | 1 + 1 file changed, 1 insertion(+) diff --git a/MAINTAINERS b/MAINTAINERS index caa5260e7c..83ad8f46c6 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -1087,6 +1087,7 @@ SPICE M: Gerd Hoffmann S: Supported F: include/ui/qemu-spice.h +F: include/ui/spice-display.h F: ui/spice-*.c F: audio/spiceaudio.c F: hw/display/qxl* From e220656ce1bd98b482d12ef51344aa46aca4e098 Mon Sep 17 00:00:00 2001 From: Thomas Huth Date: Thu, 25 Feb 2016 10:36:07 +0100 Subject: [PATCH 3/3] MAINTAINERS: Add an entry for the include/ui/ folder The ui/ folder is listed in the "Graphics" section, so I think the "include/ui/" folder should be listed there, too. Signed-off-by: Thomas Huth Message-id: 1456392967-20274-4-git-send-email-thuth@redhat.com Signed-off-by: Gerd Hoffmann --- MAINTAINERS | 1 + 1 file changed, 1 insertion(+) diff --git a/MAINTAINERS b/MAINTAINERS index 83ad8f46c6..09cc19cf47 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -1096,6 +1096,7 @@ Graphics M: Gerd Hoffmann S: Odd Fixes F: ui/ +F: include/ui/ Cocoa graphics M: Andreas Färber