diff options
author | Gerd Hoffmann | 2018-08-10 15:28:56 +0200 |
---|---|---|
committer | Gerd Hoffmann | 2018-08-30 13:24:13 +0200 |
commit | 91155f8bf723434cd22c46b12a040ebe90b0d651 (patch) | |
tree | 7fc2f94dbd49985cc48aea20068df2ad2838cc09 /hw/display/tc6393xb.c | |
parent | Revert "virtio-gpu: fix crashes upon warm reboot with vga mode" (diff) | |
download | qemu-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.c | 4 |
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) |