qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH] pixman: fix qemu_default_pixman_format (32bpp non-n


From: Gerd Hoffmann
Subject: [Qemu-devel] [PATCH] pixman: fix qemu_default_pixman_format (32bpp non-native endian)
Date: Mon, 15 Sep 2014 08:35:32 +0200

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

Reported-by: BALATON Zoltan <address@hidden>
Reported-by: Valentin Manea <address@hidden>
Signed-off-by: Gerd Hoffmann <address@hidden>
---
 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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]