summaryrefslogtreecommitdiffstats
path: root/ui/console.c
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2015-12-03 12:34:25 +0100
committerTimothy Pearson <tpearson@raptorengineering.com>2019-11-29 19:31:25 -0600
commit09fe33c524ea8d1c3286116063917d2925bfedf5 (patch)
tree1934800adc267ce71c165bf879a665b41af200e0 /ui/console.c
parenta7ff46766ae081c579aee490186c1af9dca3b7ce (diff)
downloadhqemu-09fe33c524ea8d1c3286116063917d2925bfedf5.zip
hqemu-09fe33c524ea8d1c3286116063917d2925bfedf5.tar.gz
console: block rendering until client is done
Allow gl user interfaces to block display device gl rendering. The ui code might want to do that in case it takes a little longer to bring things to screen, for example because we'll hand over a dma-buf to another process (spice will do that). Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Diffstat (limited to 'ui/console.c')
-rw-r--r--ui/console.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/ui/console.c b/ui/console.c
index fe950c6..791b4fc 100644
--- a/ui/console.c
+++ b/ui/console.c
@@ -261,6 +261,16 @@ void graphic_hw_update(QemuConsole *con)
}
}
+void graphic_hw_gl_block(QemuConsole *con, bool block)
+{
+ if (!con) {
+ con = active_console;
+ }
+ if (con && con->hw_ops->gl_block) {
+ con->hw_ops->gl_block(con->hw, block);
+ }
+}
+
void graphic_hw_invalidate(QemuConsole *con)
{
if (!con) {
OpenPOWER on IntegriCloud