qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH v2] console: fix console resize


From: Laszlo Ersek
Subject: Re: [Qemu-devel] [PATCH v2] console: fix console resize
Date: Tue, 24 Jan 2017 13:18:46 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.6.0

On 01/24/17 12:10, Gerd Hoffmann wrote:
> Only skip surface reallocation in case the old surface was created using
> qemu_alloc_display (via qemu_create_displaysurface) too, otherwise we
> might end up with a DisplaySurface with the wrong backing storage.
> 
> Cc: address@hidden
> Fixes: cd958edb1fae85d0c7d1e1acbff82d22724e8d64
> Signed-off-by: Gerd Hoffmann <address@hidden>
> Reviewed-by: Marc-André Lureau <address@hidden>
> ---
>  ui/console.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/ui/console.c b/ui/console.c
> index b9575f2..d573351 100644
> --- a/ui/console.c
> +++ b/ui/console.c
> @@ -2121,7 +2121,7 @@ void qemu_console_resize(QemuConsole *s, int width, int 
> height)
>  
>      assert(s->console_type == GRAPHIC_CONSOLE);
>  
> -    if (s->surface &&
> +    if (s->surface && (s->surface->flags & QEMU_ALLOCATED_FLAG) &&
>          pixman_image_get_width(s->surface->image) == width &&
>          pixman_image_get_height(s->surface->image) == height) {
>          return;
> 

Tested-by: Laszlo Ersek <address@hidden>
Cc: address@hidden

Thanks
Laszlo



reply via email to

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