qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 0/3] ui patch queue
@ 2016-02-29 10:44 Gerd Hoffmann
  2016-02-29 10:44 ` [Qemu-devel] [PULL 1/3] spice/gl: Enable dmabuf only for spice >= 0.13.1 Gerd Hoffmann
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Gerd Hoffmann @ 2016-02-29 10:44 UTC (permalink / raw)
  To: qemu-devel; +Cc: Gerd Hoffmann

  Hi,

Nothing major, just a small spice fix and
updates for the MAINTAINERS file.

please pull,
  Gerd

The following changes since commit 6e378dd214fbbae8138ff011ec3de7ddf13a445f:

  Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20160226' into staging (2016-02-26 16:02:00 +0000)

are available in the git repository at:


  git://git.kraxel.org/qemu tags/pull-ui-20160229-1

for you to fetch changes up to e220656ce1bd98b482d12ef51344aa46aca4e098:

  MAINTAINERS: Add an entry for the include/ui/ folder (2016-02-29 10:54:32 +0100)

----------------------------------------------------------------
ui: spice dmabuf fix, MAINTAINERS updates.

----------------------------------------------------------------
Michal Privoznik (1):
      spice/gl: Enable dmabuf only for spice >= 0.13.1

Thomas Huth (2):
      MAINTAINERS: Add spice-display.h to the SPICE section
      MAINTAINERS: Add an entry for the include/ui/ folder

 MAINTAINERS                | 2 ++
 include/ui/spice-display.h | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Qemu-devel] [PULL 1/3] spice/gl: Enable dmabuf only for spice >= 0.13.1
  2016-02-29 10:44 [Qemu-devel] [PULL 0/3] ui patch queue Gerd Hoffmann
@ 2016-02-29 10:44 ` Gerd Hoffmann
  2016-02-29 10:44 ` [Qemu-devel] [PULL 2/3] MAINTAINERS: Add spice-display.h to the SPICE section Gerd Hoffmann
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Gerd Hoffmann @ 2016-02-29 10:44 UTC (permalink / raw)
  To: qemu-devel; +Cc: Michal Privoznik, Gerd Hoffmann

From: Michal Privoznik <mprivozn@redhat.com>

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 <mprivozn@redhat.com>
Message-id: 1a724e97cb587624d6f6009c15395496bccfa32b.1456317738.git.mprivozn@redhat.com
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
---
 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 69a222b..30ccfe3 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"
-- 
1.8.3.1

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [Qemu-devel] [PULL 2/3] MAINTAINERS: Add spice-display.h to the SPICE section
  2016-02-29 10:44 [Qemu-devel] [PULL 0/3] ui patch queue Gerd Hoffmann
  2016-02-29 10:44 ` [Qemu-devel] [PULL 1/3] spice/gl: Enable dmabuf only for spice >= 0.13.1 Gerd Hoffmann
@ 2016-02-29 10:44 ` Gerd Hoffmann
  2016-02-29 10:44 ` [Qemu-devel] [PULL 3/3] MAINTAINERS: Add an entry for the include/ui/ folder Gerd Hoffmann
  2016-02-29 12:24 ` [Qemu-devel] [PULL 0/3] ui patch queue Peter Maydell
  3 siblings, 0 replies; 5+ messages in thread
From: Gerd Hoffmann @ 2016-02-29 10:44 UTC (permalink / raw)
  To: qemu-devel; +Cc: Thomas Huth, Gerd Hoffmann

From: Thomas Huth <thuth@redhat.com>

Signed-off-by: Thomas Huth <thuth@redhat.com>
Message-id: 1456392967-20274-3-git-send-email-thuth@redhat.com
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
---
 MAINTAINERS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index caa5260..83ad8f4 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -1087,6 +1087,7 @@ SPICE
 M: Gerd Hoffmann <kraxel@redhat.com>
 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*
-- 
1.8.3.1

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [Qemu-devel] [PULL 3/3] MAINTAINERS: Add an entry for the include/ui/ folder
  2016-02-29 10:44 [Qemu-devel] [PULL 0/3] ui patch queue Gerd Hoffmann
  2016-02-29 10:44 ` [Qemu-devel] [PULL 1/3] spice/gl: Enable dmabuf only for spice >= 0.13.1 Gerd Hoffmann
  2016-02-29 10:44 ` [Qemu-devel] [PULL 2/3] MAINTAINERS: Add spice-display.h to the SPICE section Gerd Hoffmann
@ 2016-02-29 10:44 ` Gerd Hoffmann
  2016-02-29 12:24 ` [Qemu-devel] [PULL 0/3] ui patch queue Peter Maydell
  3 siblings, 0 replies; 5+ messages in thread
From: Gerd Hoffmann @ 2016-02-29 10:44 UTC (permalink / raw)
  To: qemu-devel; +Cc: Thomas Huth, Gerd Hoffmann

From: Thomas Huth <thuth@redhat.com>

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 <thuth@redhat.com>
Message-id: 1456392967-20274-4-git-send-email-thuth@redhat.com
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
---
 MAINTAINERS | 1 +
 1 file changed, 1 insertion(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index 83ad8f4..09cc19c 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -1096,6 +1096,7 @@ Graphics
 M: Gerd Hoffmann <kraxel@redhat.com>
 S: Odd Fixes
 F: ui/
+F: include/ui/
 
 Cocoa graphics
 M: Andreas Färber <andreas.faerber@web.de>
-- 
1.8.3.1

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [Qemu-devel] [PULL 0/3] ui patch queue
  2016-02-29 10:44 [Qemu-devel] [PULL 0/3] ui patch queue Gerd Hoffmann
                   ` (2 preceding siblings ...)
  2016-02-29 10:44 ` [Qemu-devel] [PULL 3/3] MAINTAINERS: Add an entry for the include/ui/ folder Gerd Hoffmann
@ 2016-02-29 12:24 ` Peter Maydell
  3 siblings, 0 replies; 5+ messages in thread
From: Peter Maydell @ 2016-02-29 12:24 UTC (permalink / raw)
  To: Gerd Hoffmann; +Cc: QEMU Developers

On 29 February 2016 at 10:44, Gerd Hoffmann <kraxel@redhat.com> wrote:
>   Hi,
>
> Nothing major, just a small spice fix and
> updates for the MAINTAINERS file.
>
> please pull,
>   Gerd
>
> The following changes since commit 6e378dd214fbbae8138ff011ec3de7ddf13a445f:
>
>   Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20160226' into staging (2016-02-26 16:02:00 +0000)
>
> are available in the git repository at:
>
>
>   git://git.kraxel.org/qemu tags/pull-ui-20160229-1
>
> for you to fetch changes up to e220656ce1bd98b482d12ef51344aa46aca4e098:
>
>   MAINTAINERS: Add an entry for the include/ui/ folder (2016-02-29 10:54:32 +0100)
>
> ----------------------------------------------------------------
> ui: spice dmabuf fix, MAINTAINERS updates.
>
> ----------------------------------------------------------------

Applied, thanks.

-- PMM

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2016-02-29 12:24 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-29 10:44 [Qemu-devel] [PULL 0/3] ui patch queue Gerd Hoffmann
2016-02-29 10:44 ` [Qemu-devel] [PULL 1/3] spice/gl: Enable dmabuf only for spice >= 0.13.1 Gerd Hoffmann
2016-02-29 10:44 ` [Qemu-devel] [PULL 2/3] MAINTAINERS: Add spice-display.h to the SPICE section Gerd Hoffmann
2016-02-29 10:44 ` [Qemu-devel] [PULL 3/3] MAINTAINERS: Add an entry for the include/ui/ folder Gerd Hoffmann
2016-02-29 12:24 ` [Qemu-devel] [PULL 0/3] ui patch queue Peter Maydell

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).