summaryrefslogtreecommitdiffstats
path: root/hw/display/tc6393xb.c
diff options
context:
space:
mode:
authorGerd Hoffmann2018-08-10 15:28:56 +0200
committerGerd Hoffmann2018-08-30 13:24:13 +0200
commit91155f8bf723434cd22c46b12a040ebe90b0d651 (patch)
tree7fc2f94dbd49985cc48aea20068df2ad2838cc09 /hw/display/tc6393xb.c
parentRevert "virtio-gpu: fix crashes upon warm reboot with vga mode" (diff)
downloadqemu-91155f8bf723434cd22c46b12a040ebe90b0d651.tar.gz
qemu-91155f8bf723434cd22c46b12a040ebe90b0d651.tar.xz
qemu-91155f8bf723434cd22c46b12a040ebe90b0d651.zip
use dpy_gfx_update_full
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Message-id: 20180810132856.22833-1-kraxel@redhat.com
Diffstat (limited to 'hw/display/tc6393xb.c')
-rw-r--r--hw/display/tc6393xb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/display/tc6393xb.c b/hw/display/tc6393xb.c
index 8392e59493..3360be6f84 100644
--- a/hw/display/tc6393xb.c
+++ b/hw/display/tc6393xb.c
@@ -461,7 +461,7 @@ static void tc6393xb_draw_graphic(TC6393xbState *s, int full_update)
return;
}
- dpy_gfx_update(s->con, 0, 0, s->scr_width, s->scr_height);
+ dpy_gfx_update_full(s->con);
}
static void tc6393xb_draw_blank(TC6393xbState *s, int full_update)
@@ -480,7 +480,7 @@ static void tc6393xb_draw_blank(TC6393xbState *s, int full_update)
d += surface_stride(surface);
}
- dpy_gfx_update(s->con, 0, 0, s->scr_width, s->scr_height);
+ dpy_gfx_update_full(s->con);
}
static void tc6393xb_update_display(void *opaque)