Re: [PATCH] ui/gtk-egl: egl context needs to be unbound in the end of gd_egl_switch

2022-10-12 Thread Gerd Hoffmann
On Wed, Sep 28, 2022 at 02:58:05PM -0700, Dongwon Kim wrote: > A thread often fails to bind an egl context to itself after guest VM is > rebooted because the context is still owned by another thread. It is not > very clear what condition makes this happen but this can be prevented > by unbinding th

[PATCH] ui/gtk-egl: egl context needs to be unbound in the end of gd_egl_switch

2022-09-28 Thread Dongwon Kim
A thread often fails to bind an egl context to itself after guest VM is rebooted because the context is still owned by another thread. It is not very clear what condition makes this happen but this can be prevented by unbinding the context from the thread in the end of gd_egl_switch. Cc: Gerd Hoff