diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2015-12-02 08:17:24 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2016-02-03 10:41:36 +0100 |
commit | 321c9adba5a64a1a9de2dd7db5433b62a5433439 (patch) | |
tree | f2d8113970dad26531c6e3e682e9255fd1d01c87 /include/hw | |
parent | 0c55a1cfd35c1f1b10cc448d05c1e4ef3a0768d1 (diff) | |
download | qemu-321c9adba5a64a1a9de2dd7db5433b62a5433439.zip |
virtio-gpu: block any rendering until client (ui) is done
Wire up gl_block callback, so ui code can request to stop
virtio-gpu rendering.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'include/hw')
-rw-r--r-- | include/hw/virtio/virtio-gpu.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/hw/virtio/virtio-gpu.h b/include/hw/virtio/virtio-gpu.h index f6cae0b0e0..13b0ab0848 100644 --- a/include/hw/virtio/virtio-gpu.h +++ b/include/hw/virtio/virtio-gpu.h @@ -107,6 +107,7 @@ typedef struct VirtIOGPU { bool use_virgl_renderer; bool renderer_inited; + bool renderer_blocked; QEMUTimer *fence_poll; QEMUTimer *print_stats; |