qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL v2 00/24] Pixman patches
@ 2023-11-06  9:55 marcandre.lureau
  2023-11-06  9:55 ` [PULL v2 01/24] build-sys: add a "pixman" feature marcandre.lureau
                   ` (23 more replies)
  0 siblings, 24 replies; 36+ messages in thread
From: marcandre.lureau @ 2023-11-06  9:55 UTC (permalink / raw)
  To: qemu-devel; +Cc: stefanha, Marc-André Lureau

From: Marc-André Lureau <marcandre.lureau@redhat.com>

The following changes since commit d762bf97931b58839316b68a570eecc6143c9e3e:

  Merge tag 'pull-target-arm-20231102' of https://git.linaro.org/people/pmaydell/qemu-arm into staging (2023-11-03 10:04:12 +0800)

are available in the Git repository at:

  https://gitlab.com/marcandre.lureau/qemu.git tags/pixman-pull-request

for you to fetch changes up to d692dd73a951520f3786fd27948c3fe332457663:

  build-sys: make pixman actually optional (2023-11-06 13:50:56 +0400)

----------------------------------------------------------------
Make Pixman an optional dependency

----------------------------------------------------------------

Marc-André Lureau (24):
  build-sys: add a "pixman" feature
  build-sys: drop needless warning pragmas for old pixman
  ui: compile out some qemu-pixman functions when !PIXMAN
  ui: add pixman-minimal.h
  vl: drop needless -spice checks
  qemu-options: define -vnc only #ifdef CONFIG_VNC
  vl: simplify display_remote logic
  vl: move display early init before default devices
  ui/console: allow to override the default VC
  ui/vc: console-vc requires PIXMAN
  qmp/hmp: disable screendump if PIXMAN is missing
  virtio-gpu: replace PIXMAN for region/rect test
  ui/console: when PIXMAN is unavailable, don't draw placeholder msg
  vhost-user-gpu: skip VHOST_USER_GPU_UPDATE when !PIXMAN
  ui/gl: opengl doesn't require PIXMAN
  ui/vnc: VNC requires PIXMAN
  ui/spice: SPICE/QXL requires PIXMAN
  ui/gtk: -display gtk requires PIXMAN
  ui/dbus: do not require PIXMAN
  arm/kconfig: XLNX_ZYNQMP_ARM depends on PIXMAN
  hw/sm501: allow compiling without PIXMAN
  hw/display: make ATI_VGA depend on PIXMAN
  hw/mips: FULOONG depends on VT82C686
  build-sys: make pixman actually optional

 configs/devices/mips64el-softmmu/default.mak |   3 +-
 meson.build                                  |  25 ++-
 qapi/ui.json                                 |   3 +-
 include/ui/console.h                         |   2 +
 include/ui/pixman-minimal.h                  | 195 +++++++++++++++++++
 include/ui/qemu-pixman.h                     |  15 +-
 include/ui/rect.h                            |  59 ++++++
 hw/display/sm501.c                           |  46 +++--
 hw/display/vhost-user-gpu.c                  |   2 +
 hw/display/virtio-gpu.c                      |  30 ++-
 system/vl.c                                  |  84 ++++----
 ui/console-vc-stubs.c                        |  33 ++++
 ui/console.c                                 |  19 ++
 ui/dbus-listener.c                           |  90 ++++++---
 ui/qemu-pixman.c                             |   6 +
 ui/ui-hmp-cmds.c                             |   2 +
 ui/ui-qmp-cmds.c                             |   2 +
 ui/vnc-stubs.c                               |  12 --
 Kconfig.host                                 |   3 +
 hmp-commands.hx                              |   2 +
 hw/arm/Kconfig                               |   3 +-
 hw/display/Kconfig                           |  10 +-
 hw/display/meson.build                       |   4 +-
 hw/mips/Kconfig                              |   3 +
 meson_options.txt                            |   2 +
 qemu-options.hx                              |   2 +
 scripts/meson-buildoptions.sh                |   3 +
 ui/meson.build                               |  22 +--
 28 files changed, 543 insertions(+), 139 deletions(-)
 create mode 100644 include/ui/pixman-minimal.h
 create mode 100644 include/ui/rect.h
 create mode 100644 ui/console-vc-stubs.c

-- 
2.41.0



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

end of thread, other threads:[~2023-11-07  1:38 UTC | newest]

Thread overview: 36+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-06  9:55 [PULL v2 00/24] Pixman patches marcandre.lureau
2023-11-06  9:55 ` [PULL v2 01/24] build-sys: add a "pixman" feature marcandre.lureau
2023-11-06  9:55 ` [PULL v2 02/24] build-sys: drop needless warning pragmas for old pixman marcandre.lureau
2023-11-06  9:55 ` [PULL v2 03/24] ui: compile out some qemu-pixman functions when !PIXMAN marcandre.lureau
2023-11-06  9:55 ` [PULL v2 04/24] ui: add pixman-minimal.h marcandre.lureau
2023-11-06  9:55 ` [PULL v2 05/24] vl: drop needless -spice checks marcandre.lureau
2023-11-06  9:55 ` [PULL v2 06/24] qemu-options: define -vnc only #ifdef CONFIG_VNC marcandre.lureau
2023-11-06  9:55 ` [PULL v2 07/24] vl: simplify display_remote logic marcandre.lureau
2023-11-06  9:55 ` [PULL v2 08/24] vl: move display early init before default devices marcandre.lureau
2023-11-06  9:55 ` [PULL v2 09/24] ui/console: allow to override the default VC marcandre.lureau
2023-11-06  9:55 ` [PULL v2 10/24] ui/vc: console-vc requires PIXMAN marcandre.lureau
2023-11-06  9:55 ` [PULL v2 11/24] qmp/hmp: disable screendump if PIXMAN is missing marcandre.lureau
2023-11-06  9:55 ` [PULL v2 12/24] virtio-gpu: replace PIXMAN for region/rect test marcandre.lureau
2023-11-06  9:55 ` [PULL v2 13/24] ui/console: when PIXMAN is unavailable, don't draw placeholder msg marcandre.lureau
2023-11-06  9:55 ` [PULL v2 14/24] vhost-user-gpu: skip VHOST_USER_GPU_UPDATE when !PIXMAN marcandre.lureau
2023-11-06  9:55 ` [PULL v2 15/24] ui/gl: opengl doesn't require PIXMAN marcandre.lureau
2023-11-06  9:55 ` [PULL v2 16/24] ui/vnc: VNC requires PIXMAN marcandre.lureau
2023-11-06  9:55 ` [PULL v2 17/24] ui/spice: SPICE/QXL " marcandre.lureau
2023-11-06  9:55 ` [PULL v2 18/24] ui/gtk: -display gtk " marcandre.lureau
2023-11-06  9:55 ` [PULL v2 19/24] ui/dbus: do not require PIXMAN marcandre.lureau
2023-11-06  9:55 ` [PULL v2 20/24] arm/kconfig: XLNX_ZYNQMP_ARM depends on PIXMAN marcandre.lureau
2023-11-06  9:55 ` [PULL v2 21/24] hw/sm501: allow compiling without PIXMAN marcandre.lureau
2023-11-06  9:55 ` [PULL v2 22/24] hw/display: make ATI_VGA depend on PIXMAN marcandre.lureau
2023-11-06 10:02   ` Philippe Mathieu-Daudé
2023-11-06 10:11     ` Marc-André Lureau
2023-11-06 10:47       ` Philippe Mathieu-Daudé
2023-11-06 10:53         ` BALATON Zoltan
2023-11-06 10:57           ` Marc-André Lureau
2023-11-06 11:05             ` BALATON Zoltan
2023-11-07  0:34               ` Stefan Hajnoczi
2023-11-07  1:10                 ` BALATON Zoltan
2023-11-07  1:36                   ` Stefan Hajnoczi
2023-11-06 10:46   ` BALATON Zoltan
2023-11-06  9:55 ` [PULL v2 23/24] hw/mips: FULOONG depends on VT82C686 marcandre.lureau
2023-11-06 10:03   ` Philippe Mathieu-Daudé
2023-11-06  9:55 ` [PULL v2 24/24] build-sys: make pixman actually optional marcandre.lureau

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