search for: rgb_to_pixel32bgr

Displaying 1 result from an estimated 1 matches for "rgb_to_pixel32bgr".

2009 Mar 02
0
[PATCH 3 of 13] remove bgr
...diff --git a/hw/musicpal.c b/hw/musicpal.c index d6bd9ec..44a5659 100644 --- a/hw/musicpal.c +++ b/hw/musicpal.c @@ -835,7 +835,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)); diff --git a/hw/tcx.c b/hw/tcx.c index de4fda0..dd3ac37 100644 --- a/hw/tcx.c +++ b/hw/tcx.c @@ -6...