From: Anthony Liguori <anthony@codemonkey.ws>
To: Gerd Hoffmann <kraxel@redhat.com>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH] Add support for depth 15 to qemu_default_pixelformat()
Date: Tue, 01 Jun 2010 13:28:57 -0500 [thread overview]
Message-ID: <4C055169.9020007@codemonkey.ws> (raw)
In-Reply-To: <1274435954-9814-1-git-send-email-kraxel@redhat.com>
On 05/21/2010 04:59 AM, Gerd Hoffmann wrote:
> Makes qemu_default_pixelformat(15) return pixelformat filled for 15 bit
> color depth (16 bpp, 5 bits for red,green,blue each, 1 bit unused).
>
> Signed-off-by: Gerd Hoffmann<kraxel@redhat.com>
>
Applied. Thanks.
Regards,
Anthony Liguori
> ---
> console.c | 16 ++++++++++++++++
> 1 files changed, 16 insertions(+), 0 deletions(-)
>
> diff --git a/console.c b/console.c
> index 7070b1b..c91e2bb 100644
> --- a/console.c
> +++ b/console.c
> @@ -1621,6 +1621,22 @@ PixelFormat qemu_default_pixelformat(int bpp)
> pf.depth = bpp == 32 ? 24 : bpp;
>
> switch (bpp) {
> + case 15:
> + pf.bits_per_pixel = 16;
> + pf.bytes_per_pixel = 2;
> + pf.rmask = 0x00007c00;
> + pf.gmask = 0x000003E0;
> + pf.bmask = 0x0000001F;
> + pf.rmax = 31;
> + pf.gmax = 31;
> + pf.bmax = 31;
> + pf.rshift = 10;
> + pf.gshift = 5;
> + pf.bshift = 0;
> + pf.rbits = 5;
> + pf.gbits = 5;
> + pf.bbits = 5;
> + break;
> case 16:
> pf.rmask = 0x0000F800;
> pf.gmask = 0x000007E0;
>
prev parent reply other threads:[~2010-06-01 18:29 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-05-21 9:59 [Qemu-devel] [PATCH] Add support for depth 15 to qemu_default_pixelformat() Gerd Hoffmann
2010-06-01 18:28 ` Anthony Liguori [this message]
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=4C055169.9020007@codemonkey.ws \
--to=anthony@codemonkey.ws \
--cc=kraxel@redhat.com \
--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).