Hello
we have migrated recently on CEF 129 and we see a serious hang when a CEF window is resized.
Our configuration is :
Offscreen mode
Message loop not in the main thread : CefSettings.multi_threaded_message_loop==1
OS : Windows 10
This is a regression from our previous configuration with CEF 125
I haven't reproduce the issue with cefclient but one point seems important :
in cefclient, CefRefPtr<CefBrowserHost>::WasResized is called in the CEF_UIT thread
(in file cef\tests\cefclient\browser\osr_window_win.cc)
while in our code its called in our main thread which is different from CEF_UIT.
So in our case, a task (calling CefRenderWidgetHostViewOSR::WasResized) is posted on CEF_UIT to be executed later and I've seen this can be long ...
Maybe there a lots of task to execute before ... For the moment I don't get why there is a such delay between the task post and the task execution.
If someone has any hint ...
Thanks