Rendering of scanout could be skipped if ctx/surface/image don't exist due to an asynchronous event such as monitors being disconnected.
Cc: Gerd Hoffmann <kra...@redhat.com> Cc: Daniel P. Berrangé <berra...@redhat.com> Cc: Markus Armbruster <arm...@redhat.com> Cc: Philippe Mathieu-Daudé <phi...@linaro.org> Cc: Marc-André Lureau <marcandre.lur...@redhat.com> Cc: Vivek Kasireddy <vivek.kasire...@intel.com> Signed-off-by: Dongwon Kim <dongwon....@intel.com> --- ui/gtk-egl.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ui/gtk-egl.c b/ui/gtk-egl.c index aa22ebbd98..8eae2b4b1f 100644 --- a/ui/gtk-egl.c +++ b/ui/gtk-egl.c @@ -106,6 +106,11 @@ void gd_egl_draw(VirtualConsole *vc) if (!vc->gfx.ds) { return; } + + if (!vc->gfx.esurface || !vc->gfx.ectx || !vc->gfx.ds->image) { + return; + } + eglMakeCurrent(qemu_egl_display, vc->gfx.esurface, vc->gfx.esurface, vc->gfx.ectx); -- 2.34.1