diff options
author | Peter Maydell | 2018-09-24 17:15:26 +0200 |
---|---|---|
committer | Peter Maydell | 2018-09-24 17:15:26 +0200 |
commit | d5a515738ee2dec0cdf11d8a14a09abae6c20571 (patch) | |
tree | afe4cf0ecca0989ce975668252a0eca95c3bed8d /hw/display/tc6393xb.c | |
parent | Merge remote-tracking branch 'remotes/armbru/tags/pull-monitor-2018-09-01' in... (diff) | |
parent | virtio-gpu: add iommu support (diff) | |
download | qemu-d5a515738ee2dec0cdf11d8a14a09abae6c20571.tar.gz qemu-d5a515738ee2dec0cdf11d8a14a09abae6c20571.tar.xz qemu-d5a515738ee2dec0cdf11d8a14a09abae6c20571.zip |
Merge remote-tracking branch 'remotes/kraxel/tags/vga-20180903-pull-request' into staging
vga: virtio reset fix, virtio iommu support.
# gpg: Signature made Mon 03 Sep 2018 07:57:32 BST
# gpg: using RSA key 4CB6D8EED3E87138
# gpg: Good signature from "Gerd Hoffmann (work) <kraxel@redhat.com>"
# gpg: aka "Gerd Hoffmann <gerd@kraxel.org>"
# gpg: aka "Gerd Hoffmann (private) <kraxel@gmail.com>"
# Primary key fingerprint: A032 8CFF B93A 17A7 9901 FE7D 4CB6 D8EE D3E8 7138
* remotes/kraxel/tags/vga-20180903-pull-request:
virtio-gpu: add iommu support
virtio-gpu: pass down VirtIOGPU pointer to a bunch of functions
use dpy_gfx_update_full
Revert "virtio-gpu: fix crashes upon warm reboot with vga mode"
virtio-vga: fix reset
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
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) |