]> git.proxmox.com Git - mirror_qemu.git/commitdiff
console: don't set PixelFormat alpha fields for 32bpp
authorGerd Hoffmann <kraxel@redhat.com>
Wed, 10 Oct 2012 09:16:26 +0000 (11:16 +0200)
committerGerd Hoffmann <kraxel@redhat.com>
Thu, 1 Nov 2012 13:00:04 +0000 (14:00 +0100)
Currently it is inconstent, PixelFormat->amask is left unset whereas
abits and amax and ashift are filled.  As an alpha channel doesn't make
sense for the vga framebuffer leave all alpha fields clear.

Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
console.c

index 48d88e43cefeb702dc9669a1a749176e7d221dd8..d28b75ec7d9a76ca9708bf44da6b625e7cade72d 100644 (file)
--- a/console.c
+++ b/console.c
@@ -1715,18 +1715,15 @@ PixelFormat qemu_default_pixelformat(int bpp)
             pf.rmask = 0x00FF0000;
             pf.gmask = 0x0000FF00;
             pf.bmask = 0x000000FF;
-            pf.amax = 255;
             pf.rmax = 255;
             pf.gmax = 255;
             pf.bmax = 255;
-            pf.ashift = 24;
             pf.rshift = 16;
             pf.gshift = 8;
             pf.bshift = 0;
             pf.rbits = 8;
             pf.gbits = 8;
             pf.bbits = 8;
-            pf.abits = 8;
             break;
         default:
             break;