mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-09 18:44:58 -06:00
remove bgr (Stefano Stabellini)
Do not handle bgr host displays in the backends. Right now a bgr flag exists so that sdl can set it, if the SDL_Surface is bgr. Afterwards the graphic device (e.g. vga.c) does the needed conversion. With this patch series is sdl that is responsible for rendering the format provided by the graphic device that must provide a DisplaySurface (ds->surface) in 16 or 32 bpp, rgb. Afterwards sdl creates a SDL_Surface from the given DisplaySurface and blits it into the main SDL_Surface using SDL_BlitSurface. Everything is handled by sdl transparently, because SDL_BlitSurface is perfectly capable of handling bgr displays by itself. Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6335 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
9fd8d8d70d
commit
8927bcfd33
6 changed files with 20 additions and 51 deletions
|
@ -829,7 +829,7 @@ static void lcd_refresh(void *opaque)
|
|||
break;
|
||||
LCD_REFRESH(8, rgb_to_pixel8)
|
||||
LCD_REFRESH(16, rgb_to_pixel16)
|
||||
LCD_REFRESH(32, (s->ds->bgr ? rgb_to_pixel32bgr : rgb_to_pixel32))
|
||||
LCD_REFRESH(32, rgb_to_pixel32)
|
||||
default:
|
||||
cpu_abort(cpu_single_env, "unsupported colour depth %i\n",
|
||||
ds_get_bits_per_pixel(s->ds));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue