On 11/10/21 00:41, Rémi Bernon wrote:
On 11/9/21 13:55, Jacek Caban wrote:
Signed-off-by: Jacek Caban jacek@codeweavers.com
dlls/user32/driver.c | 209 +---------------------------- dlls/win32u/driver.c | 310 ++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 310 insertions(+), 209 deletions(-)
A little bit related to my previous comment, this patch introduces a reset to "null" graphics driver on driver unload.
I think it could also add the same
__wine_set_display_driver( &null_driver, WINE_GDI_DRIVER_VERSION );
call when the "null" driver is explicitly requested and loaded, possibly addressing my previous comment too (as the pointer would not be lasy_load_driver anymore).
Also, regarding EnumDisplayMonitors and GetMonitorInfo, for which you added some FIXME, I have some patches to move the default implementation back to the corresponding user32 functions.
I intended to send them after the previous nulldrv display device cache series I sent a week ago but I don't think they actually depend on it.
(Similarly, I used the monitor cache to keep the default and initial monitor for GetMonitorInfo implementation)
I rebased and pushed the patches there if you're interested, although only the commit up to c998fbadab6aa33e3bd2740b0651a0c0509d4c02 are really relevant for this:
https://github.com/rbernon/wine/compare/master..wip/nulldrv/v2
Cheers,