qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 0/1] pixman: fix qemu_default_pixman_format (32bpp non-native endian)
@ 2014-10-02  7:54 Gerd Hoffmann
  2014-10-02  7:54 ` [Qemu-devel] [PULL 1/1] " Gerd Hoffmann
  2014-10-02 14:01 ` [Qemu-devel] [PULL 0/1] " Peter Maydell
  0 siblings, 2 replies; 3+ messages in thread
From: Gerd Hoffmann @ 2014-10-02  7:54 UTC (permalink / raw)
  To: qemu-devel; +Cc: Gerd Hoffmann

  Hi,

Fix pixman format bug.

please pull,
  Gerd

The following changes since commit 29429c7244c73eefada3d0ec6dd30c5698782d08:

  Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20140929' into staging (2014-09-30 11:02:06 +0100)

are available in the git repository at:


  git://git.kraxel.org/qemu tags/pull-console-20141002-1

for you to fetch changes up to 89ec031b09c81821e349c364575fad652395cf94:

  pixman: fix qemu_default_pixman_format (32bpp non-native endian) (2014-09-30 13:34:04 +0200)

----------------------------------------------------------------
pixman: fix qemu_default_pixman_format (32bpp non-native endian)

----------------------------------------------------------------
Gerd Hoffmann (1):
      pixman: fix qemu_default_pixman_format (32bpp non-native endian)

 ui/qemu-pixman.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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

* [Qemu-devel] [PULL 1/1] pixman: fix qemu_default_pixman_format (32bpp non-native endian)
  2014-10-02  7:54 [Qemu-devel] [PULL 0/1] pixman: fix qemu_default_pixman_format (32bpp non-native endian) Gerd Hoffmann
@ 2014-10-02  7:54 ` Gerd Hoffmann
  2014-10-02 14:01 ` [Qemu-devel] [PULL 0/1] " Peter Maydell
  1 sibling, 0 replies; 3+ messages in thread
From: Gerd Hoffmann @ 2014-10-02  7:54 UTC (permalink / raw)
  To: qemu-devel; +Cc: Gerd Hoffmann, Anthony Liguori

Bug breaks SDL display of bigendian guests on little endian hosts.

Reported-by: BALATON Zoltan <balaton@eik.bme.hu>
Reported-by: Valentin Manea <valentin.manea@gmail.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
---
 ui/qemu-pixman.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ui/qemu-pixman.c b/ui/qemu-pixman.c
index 30c7fdd..1f6fea5 100644
--- a/ui/qemu-pixman.c
+++ b/ui/qemu-pixman.c
@@ -80,7 +80,7 @@ pixman_format_code_t qemu_default_pixman_format(int bpp, bool native_endian)
         case 24:
             return PIXMAN_b8g8r8;
         case 32:
-            return PIXMAN_b8g8r8a8;
+            return PIXMAN_b8g8r8x8;
         break;
         }
     }
-- 
1.8.3.1

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

* Re: [Qemu-devel] [PULL 0/1] pixman: fix qemu_default_pixman_format (32bpp non-native endian)
  2014-10-02  7:54 [Qemu-devel] [PULL 0/1] pixman: fix qemu_default_pixman_format (32bpp non-native endian) Gerd Hoffmann
  2014-10-02  7:54 ` [Qemu-devel] [PULL 1/1] " Gerd Hoffmann
@ 2014-10-02 14:01 ` Peter Maydell
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Maydell @ 2014-10-02 14:01 UTC (permalink / raw)
  To: Gerd Hoffmann; +Cc: QEMU Developers

On 2 October 2014 08:54, Gerd Hoffmann <kraxel@redhat.com> wrote:
>   Hi,
>
> Fix pixman format bug.
>
> please pull,
>   Gerd
>
> The following changes since commit 29429c7244c73eefada3d0ec6dd30c5698782d08:
>
>   Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20140929' into staging (2014-09-30 11:02:06 +0100)
>
> are available in the git repository at:
>
>
>   git://git.kraxel.org/qemu tags/pull-console-20141002-1
>
> for you to fetch changes up to 89ec031b09c81821e349c364575fad652395cf94:
>
>   pixman: fix qemu_default_pixman_format (32bpp non-native endian) (2014-09-30 13:34:04 +0200)
>
> ----------------------------------------------------------------
> pixman: fix qemu_default_pixman_format (32bpp non-native endian)
>
> ----------------------------------------------------------------

Applied, thanks.

-- PMM

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

end of thread, other threads:[~2014-10-02 14:02 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-02  7:54 [Qemu-devel] [PULL 0/1] pixman: fix qemu_default_pixman_format (32bpp non-native endian) Gerd Hoffmann
2014-10-02  7:54 ` [Qemu-devel] [PULL 1/1] " Gerd Hoffmann
2014-10-02 14:01 ` [Qemu-devel] [PULL 0/1] " 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).