Commit 09bbb0ae authored by Gerd Hoffmann's avatar Gerd Hoffmann
Browse files

console: don't set PixelFormat alpha fields for 32bpp



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: default avatarGerd Hoffmann <kraxel@redhat.com>
parent 537a4391
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -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;