qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH v3 00/24] console: console overhaul continued
@ 2013-04-04  7:28 Gerd Hoffmann
  2013-04-04  7:28 ` [Qemu-devel] [PATCH 01/24] exynos4210_fimd.c: fix display resize bug introduced after console revamp Gerd Hoffmann
                   ` (23 more replies)
  0 siblings, 24 replies; 30+ messages in thread
From: Gerd Hoffmann @ 2013-04-04  7:28 UTC (permalink / raw)
  To: qemu-devel; +Cc: Gerd Hoffmann

  Hi,

Next round of console cleanup patches for review.  What is in there?

  (1) qemu text consoles are rendered using pixman now.
  (2) Each QemuConsole has its own DisplaySurface now, so we can
      switch consoles without re-rendering the QemuConsole and
      update non-active consoles.
  (3) Based on (2) the screendump code is simplified *alot*.
  (4) gui refresh timer adaption is fixes and consolidated.

Also some cleanups and bugfixes.

v3 changes:
  * more bugfixes (especially vmware vga).
  * dropped multi-window gtk patch for now (needs some more
    refinement + discussions, but I don't want it block the
    other patches).
  * addressed v2 review comments.

v2 adds:
  * bugfixes from Igor.
  * multihead support.

cheers,
  Gerd

The following changes since commit 4dbb9ed3263e0f48282a2fc3d05099ba63e5b0e2:

  xilinx_axienet: pump events as appropriate (2013-04-04 00:55:03 +0200)

are available in the git repository at:

  git://git.kraxel.org/qemu pixman.v10

for you to fetch changes up to e98ffc5606e9aa294e04d214f9fa0e90b22a8ab0:

  qxl: register QemuConsole for secondary cards (2013-04-04 09:18:04 +0200)

----------------------------------------------------------------
Gerd Hoffmann (22):
      hw/vmware_vga.c: add tracepoints for mmio reads+writes
      hw/vmware_vga.c: various vmware vga fixes.
      pixman: add qemu_pixman_color()
      pixman: render vgafont glyphs into pixman images
      console: use pixman for fill+blit
      console: use pixman for font rendering
      console: switch color_table_rgb to pixman_color_t
      console: add trace events
      console: displaystate init revamp
      console: rename vga_hw_*, add QemuConsole param
      console: give each QemuConsole its own DisplaySurface
      console: simplify screendump
      console: zap g_width + g_height
      console: move gui_update+gui_setup_refresh from vl.c into console.c
      console: make DisplayState private to console.c
      console: add GraphicHwOps
      console: gui timer fixes
      xen: re-enable refresh interval reporting for xenfb
      console: add qemu_console_is_*
      console: allow pinning displaychangelisteners to consoles
      gtk: custom cursor support
      qxl: register QemuConsole for secondary cards

Igor Mitsyanko (2):
      exynos4210_fimd.c: fix display resize bug introduced after console revamp
      hw/vmware_vga.c: fix screen resize bug introduced after console revamp

 hw/arm/musicpal.c          |    8 +-
 hw/blizzard.c              |   21 +-
 hw/cirrus_vga.c            |   10 +-
 hw/exynos4210_fimd.c       |   15 +-
 hw/g364fb.c                |   80 +-----
 hw/jazz_led.c              |   11 +-
 hw/milkymist-vgafb.c       |    9 +-
 hw/omap_lcdc.c             |   93 +-----
 hw/pl110.c                 |    9 +-
 hw/pxa2xx_lcd.c            |    9 +-
 hw/qxl.c                   |   42 +--
 hw/sm501.c                 |    7 +-
 hw/ssd0303.c               |    9 +-
 hw/ssd0323.c               |    9 +-
 hw/tc6393xb.c              |   10 +-
 hw/tcx.c                   |  143 +---------
 hw/unicore32/puv3.c        |    4 +-
 hw/vga-isa-mm.c            |    4 +-
 hw/vga-isa.c               |    3 +-
 hw/vga-pci.c               |    3 +-
 hw/vga.c                   |   76 +----
 hw/vga_int.h               |    6 +-
 hw/vmware_vga.c            |  198 +++++++------
 hw/xenfb.c                 |   58 ++--
 include/ui/console.h       |   55 ++--
 include/ui/qemu-pixman.h   |    9 +
 include/ui/spice-display.h |    1 -
 trace-events               |   11 +
 ui/console.c               |  676 ++++++++++++++++++++++++--------------------
 ui/curses.c                |   11 +-
 ui/gtk.c                   |   36 ++-
 ui/qemu-pixman.c           |   54 ++++
 ui/sdl.c                   |   52 ++--
 ui/spice-display.c         |   11 +-
 ui/vnc.c                   |   87 ++----
 ui/vnc.h                   |    2 -
 vl.c                       |   55 +---
 37 files changed, 831 insertions(+), 1066 deletions(-)

^ permalink raw reply	[flat|nested] 30+ messages in thread
* [Qemu-devel] [PULL v4 00/24] console: console overhaul continued
@ 2013-04-16  9:39 Gerd Hoffmann
  2013-04-16  9:39 ` [Qemu-devel] [PATCH 02/24] hw/vmware_vga.c: fix screen resize bug introduced after console revamp Gerd Hoffmann
  0 siblings, 1 reply; 30+ messages in thread
From: Gerd Hoffmann @ 2013-04-16  9:39 UTC (permalink / raw)
  To: qemu-devel; +Cc: Gerd Hoffmann

  Hi,

Next batch of console cleanup patches.  What is in there?

  (1) qemu text consoles are rendered using pixman now.
  (2) Each QemuConsole has its own DisplaySurface now, so we can
      switch consoles without re-rendering the QemuConsole and
      update non-active consoles.
  (3) Based on (2) the screendump code is simplified *alot*.
  (4) gui refresh timer adaption is fixes and consolidated.

Also some cleanups and bugfixes.

v4 changes:
  * fix xenfb according to Stefano's review.
  * rebase to latest master.

v3 changes:
  * more bugfixes (especially vmware vga).
  * dropped multi-window gtk patch for now (needs some more
    refinement + discussions, but I don't want it block the
    other patches).
  * addressed v2 review comments.

v2 adds:
  * bugfixes from Igor.
  * multihead support.

please pull,
  Gerd

The following changes since commit 24a6e7f4d91e9ed5f8117ecb083431a23f8609a0:

  virtio-balloon: fix dynamic properties. (2013-04-15 17:06:58 -0500)

are available in the git repository at:

  git://git.kraxel.org/qemu pixman.v11

for you to fetch changes up to bfe528b9b99d52693a55f2b803039d68a97bcfb2:

  qxl: register QemuConsole for secondary cards (2013-04-16 09:26:21 +0200)

----------------------------------------------------------------
Gerd Hoffmann (22):
      hw/vmware_vga.c: add tracepoints for mmio reads+writes
      hw/vmware_vga.c: various vmware vga fixes.
      pixman: add qemu_pixman_color()
      pixman: render vgafont glyphs into pixman images
      console: use pixman for fill+blit
      console: use pixman for font rendering
      console: switch color_table_rgb to pixman_color_t
      console: add trace events
      console: displaystate init revamp
      console: rename vga_hw_*, add QemuConsole param
      console: give each QemuConsole its own DisplaySurface
      console: simplify screendump
      console: zap g_width + g_height
      console: move gui_update+gui_setup_refresh from vl.c into console.c
      console: make DisplayState private to console.c
      console: add GraphicHwOps
      console: gui timer fixes
      xen: re-enable refresh interval reporting for xenfb
      console: add qemu_console_is_*
      console: allow pinning displaychangelisteners to consoles
      gtk: custom cursor support
      qxl: register QemuConsole for secondary cards

Igor Mitsyanko (2):
      exynos4210_fimd.c: fix display resize bug introduced after console revamp
      hw/vmware_vga.c: fix screen resize bug introduced after console revamp

 hw/arm/musicpal.c            |    8 +-
 hw/display/blizzard.c        |   21 +-
 hw/display/cirrus_vga.c      |   10 +-
 hw/display/exynos4210_fimd.c |   15 +-
 hw/display/g364fb.c          |   80 +----
 hw/display/jazz_led.c        |   11 +-
 hw/display/milkymist-vgafb.c |    9 +-
 hw/display/omap_lcdc.c       |   93 +-----
 hw/display/pl110.c           |    9 +-
 hw/display/pxa2xx_lcd.c      |    9 +-
 hw/display/qxl.c             |   42 +--
 hw/display/sm501.c           |    7 +-
 hw/display/ssd0303.c         |    9 +-
 hw/display/ssd0323.c         |    9 +-
 hw/display/tc6393xb.c        |   10 +-
 hw/display/tcx.c             |  143 +--------
 hw/display/vga-isa-mm.c      |    4 +-
 hw/display/vga-isa.c         |    3 +-
 hw/display/vga-pci.c         |    3 +-
 hw/display/vga.c             |   76 +----
 hw/display/vga_int.h         |    6 +-
 hw/display/vmware_vga.c      |  198 +++++++------
 hw/display/xenfb.c           |   67 ++---
 hw/unicore32/puv3.c          |    4 +-
 include/ui/console.h         |   55 ++--
 include/ui/qemu-pixman.h     |    9 +
 include/ui/spice-display.h   |    1 -
 trace-events                 |   11 +
 ui/console.c                 |  676 +++++++++++++++++++++++-------------------
 ui/curses.c                  |   11 +-
 ui/gtk.c                     |   36 ++-
 ui/qemu-pixman.c             |   54 ++++
 ui/sdl.c                     |   52 ++--
 ui/spice-display.c           |   11 +-
 ui/vnc.c                     |   87 ++----
 ui/vnc.h                     |    2 -
 vl.c                         |   55 +---
 37 files changed, 832 insertions(+), 1074 deletions(-)

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

end of thread, other threads:[~2013-04-16  9:39 UTC | newest]

Thread overview: 30+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-04  7:28 [Qemu-devel] [PATCH v3 00/24] console: console overhaul continued Gerd Hoffmann
2013-04-04  7:28 ` [Qemu-devel] [PATCH 01/24] exynos4210_fimd.c: fix display resize bug introduced after console revamp Gerd Hoffmann
2013-04-04  7:28 ` [Qemu-devel] [PATCH 02/24] hw/vmware_vga.c: fix screen " Gerd Hoffmann
2013-04-05 11:21   ` Alexandru Damian
2013-04-04  7:28 ` [Qemu-devel] [PATCH 03/24] hw/vmware_vga.c: add tracepoints for mmio reads+writes Gerd Hoffmann
2013-04-04  7:28 ` [Qemu-devel] [PATCH 04/24] hw/vmware_vga.c: various vmware vga fixes Gerd Hoffmann
2013-04-04  7:28 ` [Qemu-devel] [PATCH 05/24] pixman: add qemu_pixman_color() Gerd Hoffmann
2013-04-04  7:28 ` [Qemu-devel] [PATCH 06/24] pixman: render vgafont glyphs into pixman images Gerd Hoffmann
2013-04-04  7:28 ` [Qemu-devel] [PATCH 07/24] console: use pixman for fill+blit Gerd Hoffmann
2013-04-04  7:28 ` [Qemu-devel] [PATCH 08/24] console: use pixman for font rendering Gerd Hoffmann
2013-04-04  7:28 ` [Qemu-devel] [PATCH 09/24] console: switch color_table_rgb to pixman_color_t Gerd Hoffmann
2013-04-04  7:28 ` [Qemu-devel] [PATCH 10/24] console: add trace events Gerd Hoffmann
2013-04-04  7:28 ` [Qemu-devel] [PATCH 11/24] console: displaystate init revamp Gerd Hoffmann
2013-04-04  7:28 ` [Qemu-devel] [PATCH 12/24] console: rename vga_hw_*, add QemuConsole param Gerd Hoffmann
2013-04-04  7:28 ` [Qemu-devel] [PATCH 13/24] console: give each QemuConsole its own DisplaySurface Gerd Hoffmann
2013-04-04  7:28 ` [Qemu-devel] [PATCH 14/24] console: simplify screendump Gerd Hoffmann
2013-04-04  7:28 ` [Qemu-devel] [PATCH 15/24] console: zap g_width + g_height Gerd Hoffmann
2013-04-04  7:28 ` [Qemu-devel] [PATCH 16/24] console: move gui_update+gui_setup_refresh from vl.c into console.c Gerd Hoffmann
2013-04-04  7:28 ` [Qemu-devel] [PATCH 17/24] console: make DisplayState private to console.c Gerd Hoffmann
2013-04-04  7:29 ` [Qemu-devel] [PATCH 18/24] console: add GraphicHwOps Gerd Hoffmann
2013-04-04  7:29 ` [Qemu-devel] [PATCH 19/24] console: gui timer fixes Gerd Hoffmann
2013-04-04  7:29 ` [Qemu-devel] [PATCH 20/24] xen: re-enable refresh interval reporting for xenfb Gerd Hoffmann
2013-04-04 17:06   ` Stefano Stabellini
2013-04-05  7:28     ` Gerd Hoffmann
2013-04-05 10:07       ` Stefano Stabellini
2013-04-04  7:29 ` [Qemu-devel] [PATCH 21/24] console: add qemu_console_is_* Gerd Hoffmann
2013-04-04  7:29 ` [Qemu-devel] [PATCH 22/24] console: allow pinning displaychangelisteners to consoles Gerd Hoffmann
2013-04-04  7:29 ` [Qemu-devel] [PATCH 23/24] gtk: custom cursor support Gerd Hoffmann
2013-04-04  7:29 ` [Qemu-devel] [PATCH 24/24] qxl: register QemuConsole for secondary cards Gerd Hoffmann
  -- strict thread matches above, loose matches on Subject: below --
2013-04-16  9:39 [Qemu-devel] [PULL v4 00/24] console: console overhaul continued Gerd Hoffmann
2013-04-16  9:39 ` [Qemu-devel] [PATCH 02/24] hw/vmware_vga.c: fix screen resize bug introduced after console revamp Gerd Hoffmann

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