diff options
Diffstat (limited to 'ui/console.c')
-rw-r--r-- | ui/console.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ui/console.c b/ui/console.c index d8cc640..c5d11bc 100644 --- a/ui/console.c +++ b/ui/console.c @@ -294,6 +294,15 @@ void graphic_hw_gl_block(QemuConsole *con, bool block) } } +void graphic_hw_gl_flushed(QemuConsole *con) +{ + assert(con != NULL); + + if (con->hw_ops->gl_flushed) { + con->hw_ops->gl_flushed(con->hw); + } +} + int qemu_console_get_window_id(QemuConsole *con) { return con->window_id; |