* [Qemu-devel] [PATCH] Fix RGBT 5:5:5 drawing on pxa2xx
@ 2008-08-04 13:50 Lars Munch
0 siblings, 0 replies; only message in thread
From: Lars Munch @ 2008-08-04 13:50 UTC (permalink / raw)
To: qemu-devel
This patch fixes RGBT 5:5:5 drawing on pxa2xx
Signed-off-by: Lars Munch <lars@segv.dk>
---
Index: hw/pxa2xx_template.h
===================================================================
--- hw/pxa2xx_template.h (revision 4985)
+++ hw/pxa2xx_template.h (working copy)
@@ -156,6 +156,7 @@
g = (data & 0x1f) << 3;
data >>= 5;
r = (data & 0x1f) << 3;
+ data >>= 5;
if (data & 1)
SKIP_PIXEL(dest);
else
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2008-08-04 13:59 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-08-04 13:50 [Qemu-devel] [PATCH] Fix RGBT 5:5:5 drawing on pxa2xx Lars Munch
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.