qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Daniel P. Berrangé" <berrange@redhat.com>
To: marcandre.lureau@redhat.com
Cc: qemu-devel@nongnu.org, Gerd Hoffmann <kraxel@redhat.com>
Subject: Re: [PATCH 53/67] ui: add pixman-compat.h
Date: Wed, 30 Aug 2023 12:17:06 +0100	[thread overview]
Message-ID: <ZO8lMuOzsjfj+Atd@redhat.com> (raw)
In-Reply-To: <20230830093843.3531473-54-marcandre.lureau@redhat.com>

On Wed, Aug 30, 2023 at 01:38:27PM +0400, marcandre.lureau@redhat.com wrote:
> From: Marc-André Lureau <marcandre.lureau@redhat.com>
> 
> This is a tiny subset of PIXMAN API that is used pervasively in QEMU
> codebase to manage images and identify the underlying format.
> 
> It doesn't seems worth to wrap this in a QEMU-specific API.
> 
> Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
> ---
>  include/ui/pixman-compat.h | 190 +++++++++++++++++++++++++++++++++++++
>  include/ui/qemu-pixman.h   |   4 +
>  2 files changed, 194 insertions(+)
>  create mode 100644 include/ui/pixman-compat.h

This patch is what makes me feel the end state of this series
is somewhat dubious.  This pixman-compat.h shows we clearly
still need the pixman APIs, and trying to make pixman optional
is causing us to re-invent a part of pixman via copy+paste.
I don't find this very appealing.

If it is possible to disable the build of parts of QEMU such
that what remains compiled does not require pixman at all,
that is reasonable.

Keeping building stuff that actually wants pixman, via a
compat API is imposing a burden on QEMU without a compelling
gain IMHO.

> 
> diff --git a/include/ui/pixman-compat.h b/include/ui/pixman-compat.h
> new file mode 100644
> index 0000000000..e511c8b946
> --- /dev/null
> +++ b/include/ui/pixman-compat.h
> @@ -0,0 +1,190 @@
> +/*
> + * SPDX-License-Identifier: MIT
> + *
> + * Tiny subset of PIXMAN API commonly used by QEMU.
> + *
> + * Copyright 1987, 1988, 1989, 1998  The Open Group
> + * Copyright 1987, 1988, 1989 Digital Equipment Corporation
> + * Copyright 1999, 2004, 2008 Keith Packard
> + * Copyright 2000 SuSE, Inc.
> + * Copyright 2000 Keith Packard, member of The XFree86 Project, Inc.
> + * Copyright 2004, 2005, 2007, 2008, 2009, 2010 Red Hat, Inc.
> + * Copyright 2004 Nicholas Miell
> + * Copyright 2005 Lars Knoll & Zack Rusin, Trolltech
> + * Copyright 2005 Trolltech AS
> + * Copyright 2007 Luca Barbato
> + * Copyright 2008 Aaron Plattner, NVIDIA Corporation
> + * Copyright 2008 Rodrigo Kumpera
> + * Copyright 2008 André Tupinambá
> + * Copyright 2008 Mozilla Corporation
> + * Copyright 2008 Frederic Plourde
> + * Copyright 2009, Oracle and/or its affiliates. All rights reserved.
> + * Copyright 2009, 2010 Nokia Corporation
> + *
> + * Permission is hereby granted, free of charge, to any person obtaining a
> + * copy of this software and associated documentation files (the "Software"),
> + * to deal in the Software without restriction, including without limitation
> + * the rights to use, copy, modify, merge, publish, distribute, sublicense,
> + * and/or sell copies of the Software, and to permit persons to whom the
> + * Software is furnished to do so, subject to the following conditions:
> + *
> + * The above copyright notice and this permission notice (including the next
> + * paragraph) shall be included in all copies or substantial portions of the
> + * Software.
> + *
> + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
> + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
> + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
> + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
> + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
> + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
> + * DEALINGS IN THE SOFTWARE.
> + */
> +
> +#ifndef PIXMAN_COMPAT_H
> +#define PIXMAN_COMPAT_H
> +
> +#define PIXMAN_TYPE_OTHER       0
> +#define PIXMAN_TYPE_ARGB        2
> +#define PIXMAN_TYPE_ABGR        3
> +#define PIXMAN_TYPE_BGRA        8
> +#define PIXMAN_TYPE_RGBA        9
> +
> +#define PIXMAN_FORMAT(bpp,type,a,r,g,b) (((bpp) << 24) |  \
> +                                         ((type) << 16) | \
> +                                         ((a) << 12) |    \
> +                                         ((r) << 8) |     \
> +                                         ((g) << 4) |     \
> +                                         ((b)))
> +
> +#define PIXMAN_FORMAT_RESHIFT(val, ofs, num)                            \
> +        (((val >> (ofs)) & ((1 << (num)) - 1)) << ((val >> 22) & 3))
> +
> +#define PIXMAN_FORMAT_BPP(f)    PIXMAN_FORMAT_RESHIFT(f, 24, 8)
> +#define PIXMAN_FORMAT_TYPE(f)   (((f) >> 16) & 0x3f)
> +#define PIXMAN_FORMAT_A(f)      PIXMAN_FORMAT_RESHIFT(f, 12, 4)
> +#define PIXMAN_FORMAT_R(f)      PIXMAN_FORMAT_RESHIFT(f, 8, 4)
> +#define PIXMAN_FORMAT_G(f)      PIXMAN_FORMAT_RESHIFT(f, 4, 4)
> +#define PIXMAN_FORMAT_B(f)      PIXMAN_FORMAT_RESHIFT(f, 0, 4)
> +#define PIXMAN_FORMAT_DEPTH(f)  (PIXMAN_FORMAT_A(f) +   \
> +                                 PIXMAN_FORMAT_R(f) +   \
> +                                 PIXMAN_FORMAT_G(f) +   \
> +                                 PIXMAN_FORMAT_B(f))
> +
> +typedef enum {
> +    /* 32bpp formats */
> +    PIXMAN_a8r8g8b8 =    PIXMAN_FORMAT(32,PIXMAN_TYPE_ARGB,8,8,8,8),
> +    PIXMAN_x8r8g8b8 =    PIXMAN_FORMAT(32,PIXMAN_TYPE_ARGB,0,8,8,8),
> +    PIXMAN_a8b8g8r8 =    PIXMAN_FORMAT(32,PIXMAN_TYPE_ABGR,8,8,8,8),
> +    PIXMAN_x8b8g8r8 =    PIXMAN_FORMAT(32,PIXMAN_TYPE_ABGR,0,8,8,8),
> +    PIXMAN_b8g8r8a8 =    PIXMAN_FORMAT(32,PIXMAN_TYPE_BGRA,8,8,8,8),
> +    PIXMAN_b8g8r8x8 =    PIXMAN_FORMAT(32,PIXMAN_TYPE_BGRA,0,8,8,8),
> +    PIXMAN_r8g8b8a8 =    PIXMAN_FORMAT(32,PIXMAN_TYPE_RGBA,8,8,8,8),
> +    PIXMAN_r8g8b8x8 =    PIXMAN_FORMAT(32,PIXMAN_TYPE_RGBA,0,8,8,8),
> +    /* 24bpp formats */
> +    PIXMAN_r8g8b8 =      PIXMAN_FORMAT(24,PIXMAN_TYPE_ARGB,0,8,8,8),
> +    PIXMAN_b8g8r8 =      PIXMAN_FORMAT(24,PIXMAN_TYPE_ABGR,0,8,8,8),
> +    /* 16bpp formats */
> +    PIXMAN_r5g6b5 =      PIXMAN_FORMAT(16,PIXMAN_TYPE_ARGB,0,5,6,5),
> +    PIXMAN_a1r5g5b5 =    PIXMAN_FORMAT(16,PIXMAN_TYPE_ARGB,1,5,5,5),
> +    PIXMAN_x1r5g5b5 =    PIXMAN_FORMAT(16,PIXMAN_TYPE_ARGB,0,5,5,5),
> +} pixman_format_code_t;
> +
> +typedef struct pixman_image pixman_image_t;
> +
> +typedef void (* pixman_image_destroy_func_t)(pixman_image_t *image, void *data);
> +
> +struct pixman_image {
> +    int ref_count;
> +    pixman_format_code_t format;
> +    int width;
> +    int height;
> +    int stride;
> +    uint8_t *data;
> +    pixman_image_destroy_func_t destroy_func;
> +    void *destroy_data;
> +};
> +
> +typedef struct pixman_color {
> +    uint16_t    red;
> +    uint16_t    green;
> +    uint16_t    blue;
> +    uint16_t    alpha;
> +} pixman_color_t;
> +
> +static inline pixman_image_t *pixman_image_create_bits(pixman_format_code_t format,
> +                                                       int width,
> +                                                       int height,
> +                                                       uint32_t *bits,
> +                                                       int rowstride_bytes)
> +{
> +    pixman_image_t *i = g_new0(pixman_image_t, 1);
> +
> +    i->width = width;
> +    i->height = height;
> +    i->stride = rowstride_bytes ?: width * DIV_ROUND_UP(PIXMAN_FORMAT_BPP(format), 8);
> +    i->format = format;
> +    i->data = bits ?: g_malloc0(rowstride_bytes * height);
> +    i->ref_count = 1;
> +
> +    return i;
> +}
> +
> +static inline pixman_image_t *pixman_image_ref(pixman_image_t *i)
> +{
> +    i->ref_count++;
> +    return i;
> +}
> +
> +static inline bool pixman_image_unref(pixman_image_t *i)
> +{
> +    i->ref_count--;
> +
> +    if (i->ref_count == 0) {
> +        if (i->destroy_func) {
> +            i->destroy_func (i, i->destroy_data);
> +            g_free(i->data);
> +            g_free(i);
> +        }
> +
> +        return true;
> +    }
> +
> +    return false;
> +}
> +
> +static inline void pixman_image_set_destroy_function(pixman_image_t *i,
> +                                                     pixman_image_destroy_func_t func,
> +                                                     void *data)
> +
> +{
> +    i->destroy_func = func;
> +    i->destroy_data = data;
> +}
> +
> +static inline uint8_t* pixman_image_get_data(pixman_image_t *i)
> +{
> +    return i->data;
> +}
> +
> +static inline int pixman_image_get_height(pixman_image_t *i)
> +{
> +    return i->height;
> +}
> +
> +static inline int pixman_image_get_width(pixman_image_t *i)
> +{
> +    return i->width;
> +}
> +
> +static inline int pixman_image_get_stride(pixman_image_t *i)
> +{
> +    return i->stride;
> +}
> +
> +static inline pixman_format_code_t pixman_image_get_format(pixman_image_t *i)
> +{
> +    return i->format;
> +}
> +
> +#endif /* PIXMAN_COMPAT_H */
> diff --git a/include/ui/qemu-pixman.h b/include/ui/qemu-pixman.h
> index c5a0911cc7..9c693df8dd 100644
> --- a/include/ui/qemu-pixman.h
> +++ b/include/ui/qemu-pixman.h
> @@ -6,11 +6,15 @@
>  #ifndef QEMU_PIXMAN_H
>  #define QEMU_PIXMAN_H
>  
> +#ifdef CONFIG_PIXMAN
>  /* pixman-0.16.0 headers have a redundant declaration */
>  #pragma GCC diagnostic push
>  #pragma GCC diagnostic ignored "-Wredundant-decls"
>  #include <pixman.h>
>  #pragma GCC diagnostic pop
> +#else
> +#include "pixman-compat.h"
> +#endif
>  
>  /*
>   * pixman image formats are defined to be native endian,
> -- 
> 2.41.0
> 
> 

With regards,
Daniel
-- 
|: https://berrange.com      -o-    https://www.flickr.com/photos/dberrange :|
|: https://libvirt.org         -o-            https://fstop138.berrange.com :|
|: https://entangle-photo.org    -o-    https://www.instagram.com/dberrange :|



  reply	other threads:[~2023-08-30 11:17 UTC|newest]

Thread overview: 157+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-08-30  9:37 [PATCH 00/67] Make pixman an optional dependency marcandre.lureau
2023-08-30  9:37 ` [PATCH 01/67] ui: remove qemu_pixman_color() helper marcandre.lureau
2023-08-30 10:03   ` Philippe Mathieu-Daudé
2023-08-30 10:59   ` Daniel P. Berrangé
2023-08-30  9:37 ` [PATCH 02/67] ui: remove qemu_pixman_linebuf_copy() marcandre.lureau
2023-08-30 10:59   ` Daniel P. Berrangé
2023-08-30  9:37 ` [PATCH 03/67] ui/qmp: move screendump to ui-qmp-cmds.c marcandre.lureau
2023-08-30 11:00   ` Daniel P. Berrangé
2023-08-30  9:37 ` [PATCH 04/67] ui/vc: replace vc_chr_write() with generic qemu_chr_write() marcandre.lureau
2023-08-30 10:04   ` Philippe Mathieu-Daudé
2023-08-30 11:01   ` Daniel P. Berrangé
2023-08-30  9:37 ` [PATCH 05/67] ui/vc: drop have_text marcandre.lureau
2023-08-30 11:03   ` Daniel P. Berrangé
2023-08-30  9:37 ` [PATCH 06/67] ui/console: console_select() regardless of have_gfx marcandre.lureau
2023-08-30 11:05   ` Daniel P. Berrangé
2023-08-30  9:37 ` [PATCH 07/67] ui/console: call dpy_gfx_update() " marcandre.lureau
2023-08-30 11:06   ` Daniel P. Berrangé
2023-08-30  9:37 ` [PATCH 08/67] ui/console: drop have_gfx marcandre.lureau
2023-08-30 11:06   ` Daniel P. Berrangé
2023-08-30  9:37 ` [PATCH 09/67] ui/console: get the DisplayState from new_console() marcandre.lureau
2023-08-30 12:39   ` BALATON Zoltan
2023-09-01 14:10   ` Daniel P. Berrangé
2023-08-30  9:37 ` [PATCH 10/67] ui/console: new_console() cannot fail marcandre.lureau
2023-08-30 11:07   ` Daniel P. Berrangé
2023-08-30  9:37 ` [PATCH 11/67] ui/vc: VC always has a DisplayState now marcandre.lureau
2023-09-01 13:44   ` Daniel P. Berrangé
2023-08-30  9:37 ` [PATCH 12/67] ui/vc: move VCChardev declaration at the top marcandre.lureau
2023-08-30 11:07   ` Daniel P. Berrangé
2023-08-30  9:37 ` [PATCH 13/67] ui/vc: replace variable with static text attributes default marcandre.lureau
2023-09-01 13:45   ` Daniel P. Berrangé
2023-08-30  9:37 ` [PATCH 14/67] ui/vc: fold text_update_xy() marcandre.lureau
2023-08-30 11:08   ` Daniel P. Berrangé
2023-08-30  9:37 ` [PATCH 15/67] ui/vc: pass VCCharDev to VC-specific functions marcandre.lureau
2023-09-01 14:15   ` Daniel P. Berrangé
2023-08-30  9:37 ` [PATCH 16/67] ui/vc: move VCCharDev specific fields out of QemuConsole marcandre.lureau
2023-09-01 14:16   ` Daniel P. Berrangé
2023-08-30  9:37 ` [PATCH 17/67] ui/console: use OBJECT_DEFINE_TYPE for QemuConsole marcandre.lureau
2023-08-30 11:09   ` Daniel P. Berrangé
2023-08-30  9:37 ` [PATCH 18/67] ui/console: change new_console() to use object initialization marcandre.lureau
2023-09-01 14:19   ` Daniel P. Berrangé
2023-08-30  9:37 ` [PATCH 19/67] ui/console: introduce different console objects marcandre.lureau
2023-09-01 14:20   ` Daniel P. Berrangé
2023-08-30  9:37 ` [PATCH 20/67] ui/console: instantiate a specific console type marcandre.lureau
2023-09-01 14:21   ` Daniel P. Berrangé
2023-08-30  9:37 ` [PATCH 21/67] ui/console: register the console from qemu_console_init() marcandre.lureau
2023-09-01 14:21   ` Daniel P. Berrangé
2023-08-30  9:37 ` [PATCH 22/67] ui/console: remove new_console() marcandre.lureau
2023-09-01 14:22   ` Daniel P. Berrangé
2023-08-30  9:37 ` [PATCH 23/67] ui/console: specialize console_lookup_unused() marcandre.lureau
2023-09-01 14:23   ` Daniel P. Berrangé
2023-08-30  9:37 ` [PATCH 24/67] ui/console: update the head from unused QemuConsole marcandre.lureau
2023-09-01 14:23   ` Daniel P. Berrangé
2023-08-30  9:37 ` [PATCH 25/67] ui/console: allocate ui_timer in QemuConsole marcandre.lureau
2023-09-01 14:24   ` Daniel P. Berrangé
2023-08-30  9:38 ` [PATCH 26/67] ui/vc: move cursor_timer initialization to QemuTextConsole class marcandre.lureau
2023-09-01 14:27   ` Daniel P. Berrangé
2023-09-04  9:55     ` Marc-André Lureau
2023-08-30  9:38 ` [PATCH 27/67] ui/console: free more QemuConsole resources marcandre.lureau
2023-09-01 14:29   ` Daniel P. Berrangé
2023-08-30  9:38 ` [PATCH 28/67] ui/vc: move text fields to QemuTextConsole marcandre.lureau
2023-09-01 14:30   ` Daniel P. Berrangé
2023-08-30  9:38 ` [PATCH 29/67] ui/console: move graphic fields to QemuGraphicConsole marcandre.lureau
2023-09-01 14:31   ` Daniel P. Berrangé
2023-08-30  9:38 ` [PATCH 30/67] ui/vc: fold text_console_do_init() in vc_chr_open() marcandre.lureau
2023-09-01 14:34   ` Daniel P. Berrangé
2023-08-30  9:38 ` [PATCH 31/67] ui/vc: move some text console initialization to qom handlers marcandre.lureau
2023-09-01 14:36   ` Daniel P. Berrangé
2023-08-30  9:38 ` [PATCH 32/67] ui/console: simplify getting active_console size marcandre.lureau
2023-09-01 14:37   ` Daniel P. Berrangé
2023-08-30  9:38 ` [PATCH 33/67] ui/console: remove need for g_width/g_height marcandre.lureau
2023-09-01 14:37   ` Daniel P. Berrangé
2023-08-30  9:38 ` [PATCH 34/67] ui/vc: use common text console surface creation marcandre.lureau
2023-09-01 14:38   ` Daniel P. Berrangé
2023-08-30  9:38 ` [PATCH 35/67] ui/console: declare console types in console.h marcandre.lureau
2023-09-01 14:39   ` Daniel P. Berrangé
2023-08-30  9:38 ` [PATCH 36/67] ui/console: use QEMU_PIXMAN_COLOR helpers marcandre.lureau
2023-08-30 15:13   ` Philippe Mathieu-Daudé
2023-08-30  9:38 ` [PATCH 37/67] ui/console: rename vga_ functions → qemu_console_ marcandre.lureau
2023-08-30 11:11   ` Daniel P. Berrangé
2023-08-30 12:44   ` BALATON Zoltan
2023-08-30 15:13   ` Philippe Mathieu-Daudé
2023-08-30  9:38 ` [PATCH 38/67] ui/console: assert(surface) where appropriate marcandre.lureau
2023-09-01 14:39   ` Daniel P. Berrangé
2023-08-30  9:38 ` [PATCH 39/67] ui/console: fold text_console_update_cursor_timer marcandre.lureau
2023-08-30 15:15   ` Philippe Mathieu-Daudé
2023-09-01 16:51   ` Daniel P. Berrangé
2023-08-30  9:38 ` [PATCH 40/67] ui/vc: skip text console resize when possible marcandre.lureau
2023-09-01 16:52   ` Daniel P. Berrangé
2023-08-30  9:38 ` [PATCH 41/67] ui/console: minor stylistic changes marcandre.lureau
2023-09-01 16:52   ` Daniel P. Berrangé
2023-08-30  9:38 ` [PATCH 42/67] ui/vc: move text console invalidate in helper marcandre.lureau
2023-09-01 16:54   ` Daniel P. Berrangé
2023-08-30  9:38 ` [PATCH 43/67] ui/vc: do not parse VC-specific options in Spice and GTK marcandre.lureau
2023-09-01 17:13   ` Daniel P. Berrangé
2023-09-04 10:56     ` Marc-André Lureau
2023-08-30  9:38 ` [PATCH 44/67] ui/vc: change the argument for QemuTextConsole marcandre.lureau
2023-09-01 17:15   ` Daniel P. Berrangé
2023-08-30  9:38 ` [PATCH 45/67] ui/vc: remove kby_put_keysym() and update function calls marcandre.lureau
2023-08-30 20:59   ` Akihiko Odaki
2023-09-04 12:42     ` Marc-André Lureau
2023-09-04 12:47       ` Akihiko Odaki
2023-08-30  9:38 ` [PATCH 46/67] ui/vc: rename kbd_put → qemu_text_console functions marcandre.lureau
2023-08-30 15:41   ` Philippe Mathieu-Daudé
2023-09-01 17:17     ` Daniel P. Berrangé
2023-08-30  9:38 ` [PATCH 47/67] ui/console: remove redundant format field marcandre.lureau
2023-09-01 17:18   ` Daniel P. Berrangé
2023-08-30  9:38 ` [PATCH 48/67] ui/vc: preliminary QemuTextConsole changes before split marcandre.lureau
2023-09-01 17:19   ` Daniel P. Berrangé
2023-08-30  9:38 ` [PATCH 49/67] ui/vc: split off the VC part from console.c marcandre.lureau
2023-09-01 17:23   ` Daniel P. Berrangé
2023-09-04 12:57     ` Marc-André Lureau
2023-09-04 13:05       ` Daniel P. Berrangé
2023-08-30  9:38 ` [PATCH 50/67] ui/console: move DisplaySurface to its own header marcandre.lureau
2023-09-01 17:24   ` Daniel P. Berrangé
2023-09-04 12:59     ` Marc-André Lureau
2023-09-04 13:05       ` Daniel P. Berrangé
2023-08-30  9:38 ` [PATCH 51/67] build-sys: add optional "pixman" feature marcandre.lureau
2023-08-30 15:48   ` Philippe Mathieu-Daudé
2023-08-30 15:55     ` Philippe Mathieu-Daudé
2023-09-01 17:25       ` Daniel P. Berrangé
2023-08-30  9:38 ` [PATCH 52/67] ui: compile out some qemu-pixman functions when !PIXMAN marcandre.lureau
2023-08-30  9:38 ` [PATCH 53/67] ui: add pixman-compat.h marcandre.lureau
2023-08-30 11:17   ` Daniel P. Berrangé [this message]
2023-08-30 11:23     ` Marc-André Lureau
2023-08-30  9:38 ` [PATCH 54/67] ui/vc: console-vc requires PIXMAN marcandre.lureau
2023-09-01 17:28   ` Daniel P. Berrangé
2023-09-04 13:41     ` Marc-André Lureau
2023-09-04 13:44       ` Daniel P. Berrangé
2023-08-30  9:38 ` [PATCH 55/67] qmp/hmp: disable screendump if PIXMAN is missing marcandre.lureau
2023-08-30 15:18   ` Philippe Mathieu-Daudé
2023-08-30  9:38 ` [PATCH 56/67] virtio-gpu: replace PIXMAN for region/rect test marcandre.lureau
2023-08-30  9:38 ` [PATCH 57/67] ui/console: when PIXMAN is unavailable, don't draw placeholder msg marcandre.lureau
2023-08-30  9:38 ` [PATCH 58/67] vhost-user-gpu: skip VHOST_USER_GPU_UPDATE when !PIXMAN marcandre.lureau
2023-08-30  9:38 ` [PATCH 59/67] ui/gl: opengl doesn't require PIXMAN marcandre.lureau
2023-08-30  9:38 ` [PATCH 60/67] ui/vnc: VNC requires PIXMAN marcandre.lureau
2023-09-04 14:01   ` Paolo Bonzini
2023-08-30  9:38 ` [PATCH 61/67] ui/spice: SPICE/QXL " marcandre.lureau
2023-08-30 15:21   ` Philippe Mathieu-Daudé
2023-09-04 14:42     ` Paolo Bonzini
2023-09-04 14:03   ` Paolo Bonzini
2023-08-30  9:38 ` [PATCH 62/67] ui/gtk: -display gtk " marcandre.lureau
2023-08-30  9:38 ` [PATCH 63/67] ui/dbus: do not require PIXMAN marcandre.lureau
2023-08-30  9:38 ` [PATCH 64/67] arm/kconfig: XLNX_ZYNQMP_ARM depends on PIXMAN marcandre.lureau
2023-08-30 15:25   ` Philippe Mathieu-Daudé
2023-08-30  9:38 ` [PATCH 65/67] ppc/kconfig: make SAM460EX depend on PPC & PIXMAN marcandre.lureau
2023-08-30 12:34   ` BALATON Zoltan
2023-09-04 16:24     ` Paolo Bonzini
2023-09-05 20:07     ` Marc-André Lureau
2023-09-06 11:00       ` Paolo Bonzini
2023-09-04 14:05   ` Paolo Bonzini
2023-08-30  9:38 ` [PATCH 66/67] sh4/kconfig: make R2D depend on SH4 " marcandre.lureau
2023-08-30  9:38 ` [PATCH 67/67] display/kconfig: make SM501 depend on PIXMAN marcandre.lureau
2023-08-30 15:27   ` Philippe Mathieu-Daudé
2023-08-30 10:52 ` [PATCH 00/67] Make pixman an optional dependency Thomas Huth
2023-08-30 11:01   ` Marc-André Lureau
2023-08-30 11:21     ` Daniel P. Berrangé
2023-08-30 11:32       ` Marc-André Lureau

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=ZO8lMuOzsjfj+Atd@redhat.com \
    --to=berrange@redhat.com \
    --cc=kraxel@redhat.com \
    --cc=marcandre.lureau@redhat.com \
    --cc=qemu-devel@nongnu.org \
    /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).