42a945317b
- kvm-virtio-iommu-Fix-64kB-host-page-size-VFIO-device-ass.patch [bz#2211609 bz#2211634] - kvm-virtio-iommu-Rework-the-traces-in-virtio_iommu_set_p.patch [bz#2211609 bz#2211634] - kvm-vfio-pci-add-support-for-VF-token.patch [bz#2192818] - kvm-vfio-migration-Skip-log_sync-during-migration-SETUP-.patch [bz#2192818] - kvm-vfio-pci-Static-Resizable-BAR-capability.patch [bz#2192818] - kvm-vfio-pci-Fix-a-use-after-free-issue.patch [bz#2192818] - kvm-util-vfio-helpers-Use-g_file_read_link.patch [bz#2192818] - kvm-migration-Make-all-functions-check-have-the-same-for.patch [bz#2192818] - kvm-migration-Move-migration_properties-to-options.c.patch [bz#2192818] - kvm-migration-Add-switchover-ack-capability.patch [bz#2192818] - kvm-migration-Implement-switchover-ack-logic.patch [bz#2192818] - kvm-migration-Enable-switchover-ack-capability.patch [bz#2192818] - kvm-vfio-migration-Refactor-vfio_save_block-to-return-sa.patch [bz#2192818] - kvm-vfio-migration-Store-VFIO-migration-flags-in-VFIOMig.patch [bz#2192818] - kvm-vfio-migration-Add-VFIO-migration-pre-copy-support.patch [bz#2192818] - kvm-vfio-migration-Add-support-for-switchover-ack-capabi.patch [bz#2192818] - kvm-vfio-Implement-a-common-device-info-helper.patch [bz#2192818] - kvm-hw-vfio-pci-quirks-Support-alternate-offset-for-GPUD.patch [bz#2192818] - kvm-vfio-pci-Call-vfio_prepare_kvm_msi_virq_batch-in-MSI.patch [bz#2192818] - kvm-vfio-migration-Reset-bytes_transferred-properly.patch [bz#2192818] - kvm-vfio-migration-Make-VFIO-migration-non-experimental.patch [bz#2192818] - kvm-vfio-pci-Fix-a-segfault-in-vfio_realize.patch [bz#2192818] - kvm-vfio-pci-Free-leaked-timer-in-vfio_realize-error-pat.patch [bz#2192818] - kvm-hw-vfio-pci-quirks-Sanitize-capability-pointer.patch [bz#2192818] - kvm-vfio-pci-Disable-INTx-in-vfio_realize-error-path.patch [bz#2192818] - kvm-vfio-migration-Change-vIOMMU-blocker-from-global-to-.patch [bz#2192818] - kvm-vfio-migration-Free-resources-when-vfio_migration_re.patch [bz#2192818] - kvm-vfio-migration-Remove-print-of-Migration-disabled.patch [bz#2192818] - kvm-vfio-migration-Return-bool-type-for-vfio_migration_r.patch [bz#2192818] - kvm-vfio-Fix-null-pointer-dereference-bug-in-vfio_bars_f.patch [bz#2192818] - kvm-pc-bios-s390-ccw-Makefile-Use-z-noexecstack-to-silen.patch [bz#2220866] - kvm-pc-bios-s390-ccw-Fix-indentation-in-start.S.patch [bz#2220866] - kvm-pc-bios-s390-ccw-Provide-space-for-initial-stack-fra.patch [bz#2220866] - kvm-pc-bios-s390-ccw-Don-t-use-__bss_start-with-the-larl.patch [bz#2220866] - kvm-ui-Fix-pixel-colour-channel-order-for-PNG-screenshot.patch [bz#2222579] - kvm-block-blkio-fix-module_block.py-parsing.patch [bz#2213317] - kvm-Fix-virtio-blk-vhost-vdpa-typo-in-spec-file.patch [bz#2213317] - Resolves: bz#2211609 (With virtio-iommu and vfio-pci, qemu reports "warning: virtio-iommu page mask 0xfffffffffffff000 does not match 0x40201000") - Resolves: bz#2211634 ([aarch64] With virtio-iommu and vfio-pci, qemu coredump when host using kernel-64k package) - Resolves: bz#2192818 ([VFIO LM] Live migration) - Resolves: bz#2220866 (Misaligned symbol for s390-ccw image during qemu-kvm build) - Resolves: bz#2222579 (PNG screendump doesn't save screen correctly) - Resolves: bz#2213317 (Enable libblkio-based block drivers in QEMU)
89 lines
3.5 KiB
Diff
89 lines
3.5 KiB
Diff
From b998f8474846886fa1e0428fe79fe2a79231cc05 Mon Sep 17 00:00:00 2001
|
|
From: Peter Maydell <peter.maydell@linaro.org>
|
|
Date: Fri, 12 May 2023 15:43:38 +0100
|
|
Subject: [PATCH 35/37] ui: Fix pixel colour channel order for PNG screenshots
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
RH-Author: Marc-André Lureau <marcandre.lureau@redhat.com>
|
|
RH-MergeRequest: 183: ui: Fix pixel colour channel order for PNG screenshots
|
|
RH-Bugzilla: 2222579
|
|
RH-Acked-by: Miroslav Rezanina <mrezanin@redhat.com>
|
|
RH-Commit: [1/1] 76acd3c5526639e70bc2998f584503c78fc9bc56 (marcandre.lureau-rh/qemu-kvm-centos)
|
|
|
|
When we take a PNG screenshot the ordering of the colour channels in
|
|
the data is not correct, resulting in the image having weird
|
|
colouring compared to the actual display. (Specifically, on a
|
|
little-endian host the blue and red channels are swapped; on
|
|
big-endian everything is wrong.)
|
|
|
|
This happens because the pixman idea of the pixel data and the libpng
|
|
idea differ. PIXMAN_a8r8g8b8 defines that pixels are 32-bit values,
|
|
with A in bits 24-31, R in bits 16-23, G in bits 8-15 and B in bits
|
|
0-7. This means that on little-endian systems the bytes in memory
|
|
are
|
|
B G R A
|
|
and on big-endian systems they are
|
|
A R G B
|
|
|
|
libpng, on the other hand, thinks of pixels as being a series of
|
|
values for each channel, so its format PNG_COLOR_TYPE_RGB_ALPHA
|
|
always wants bytes in the order
|
|
R G B A
|
|
|
|
This isn't the same as the pixman order for either big or little
|
|
endian hosts.
|
|
|
|
The alpha channel is also unnecessary bulk in the output PNG file,
|
|
because there is no alpha information in a screenshot.
|
|
|
|
To handle the endianness issue, we already define in ui/qemu-pixman.h
|
|
various PIXMAN_BE_* and PIXMAN_LE_* values that give consistent
|
|
byte-order pixel channel formats. So we can use PIXMAN_BE_r8g8b8 and
|
|
PNG_COLOR_TYPE_RGB, which both have an in-memory byte order of
|
|
R G B
|
|
and 3 bytes per pixel.
|
|
|
|
(PPM format screenshots get this right; they already use the
|
|
PIXMAN_BE_r8g8b8 format.)
|
|
|
|
Cc: qemu-stable@nongnu.org
|
|
Resolves: https://gitlab.com/qemu-project/qemu/-/issues/1622
|
|
Fixes: 9a0a119a382867 ("Added parameter to take screenshot with screendump as PNG")
|
|
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
|
|
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
|
|
Message-id: 20230502135548.2451309-1-peter.maydell@linaro.org
|
|
|
|
(cherry picked from commit cd22a0f520f471e3bd33bc19cf3b2fa772cdb2a8)
|
|
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
|
|
---
|
|
ui/console.c | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/ui/console.c b/ui/console.c
|
|
index 6e8a3cdc62..e173731e20 100644
|
|
--- a/ui/console.c
|
|
+++ b/ui/console.c
|
|
@@ -311,7 +311,7 @@ static bool png_save(int fd, pixman_image_t *image, Error **errp)
|
|
png_struct *png_ptr;
|
|
png_info *info_ptr;
|
|
g_autoptr(pixman_image_t) linebuf =
|
|
- qemu_pixman_linebuf_create(PIXMAN_a8r8g8b8, width);
|
|
+ qemu_pixman_linebuf_create(PIXMAN_BE_r8g8b8, width);
|
|
uint8_t *buf = (uint8_t *)pixman_image_get_data(linebuf);
|
|
FILE *f = fdopen(fd, "wb");
|
|
int y;
|
|
@@ -341,7 +341,7 @@ static bool png_save(int fd, pixman_image_t *image, Error **errp)
|
|
png_init_io(png_ptr, f);
|
|
|
|
png_set_IHDR(png_ptr, info_ptr, width, height, 8,
|
|
- PNG_COLOR_TYPE_RGB_ALPHA, PNG_INTERLACE_NONE,
|
|
+ PNG_COLOR_TYPE_RGB, PNG_INTERLACE_NONE,
|
|
PNG_COMPRESSION_TYPE_BASE, PNG_FILTER_TYPE_BASE);
|
|
|
|
png_write_info(png_ptr, info_ptr);
|
|
--
|
|
2.39.3
|
|
|