qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH] pxa2xx_lcd: restore updating of display


From: Aurelien Jarno
Subject: Re: [Qemu-devel] [PATCH] pxa2xx_lcd: restore updating of display
Date: Thu, 20 Jan 2011 12:46:59 +0100
User-agent: Mutt/1.5.18 (2008-05-17)

On Tue, Jan 18, 2011 at 07:11:33PM +0300, Dmitry Eremin-Solenikov wrote:
> Recently PXA2xx lcd have stopped to be updated incrementally (picture
> frozen). This patch fixes that by passing non min/max x/y, but rather
> (correctly) x/y and w/h.
> 
> Signed-off-by: Dmitry Eremin-Solenikov <address@hidden>
> ---
>  hw/pxa2xx_lcd.c |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/hw/pxa2xx_lcd.c b/hw/pxa2xx_lcd.c
> index 1f2211a..5b2b07e 100644
> --- a/hw/pxa2xx_lcd.c
> +++ b/hw/pxa2xx_lcd.c
> @@ -796,9 +796,9 @@ static void pxa2xx_update_display(void *opaque)
>  
>      if (miny >= 0) {
>          if (s->orientation)
> -            dpy_update(s->ds, miny, 0, maxy, s->xres);
> +            dpy_update(s->ds, miny, 0, maxy - miny, s->xres);
>          else
> -            dpy_update(s->ds, 0, miny, s->xres, maxy);
> +            dpy_update(s->ds, 0, miny, s->xres, maxy - miny);
>      }
>      pxa2xx_lcdc_int_update(s);
>  
> -- 
> 1.7.2.3
> 

Thanks, applied.

-- 
Aurelien Jarno                          GPG: 1024D/F1BCDB73
address@hidden                 http://www.aurel32.net



reply via email to

[Prev in Thread] Current Thread [Next in Thread]