From: lars@segv.dk (Lars Munch)
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [PATCH] Fix RGBT 5:5:5 drawing on pxa2xx
Date: Mon, 4 Aug 2008 15:50:44 +0200 [thread overview]
Message-ID: <20080804135044.GA4834@firewall> (raw)
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
reply other threads:[~2008-08-04 13:59 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20080804135044.GA4834@firewall \
--to=lars@segv.dk \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).